@syncport/core
v0.1.1
Published
Generic transformation engine, mapping system, and adapter architecture for Syncport
Maintainers
Readme
@syncport/core
Generic transformation engine, mapping system, and adapter architecture for Syncport.
Install
npm install @syncport/coreQuick start
import { transform } from "@syncport/core";
const result = transform({ name: "Ali", email: "[email protected]" })
.map({ fields: { name: "name", email: "email" } })
.sanitize()
.export();Pair with destination adapters (@syncport/hubspot, @syncport/csv, etc.) via .use(adapter).
Features
- Fluent
transform()pipeline API - Field mapping and validation
- Pluggable
Adapterinterface for CRM and export targets
Links
- Playground — try transforms in the browser
- GitHub
- Report issues
License
MIT
