Repzo SQL Connector (v1.1.38) enables seamless data synchronization between Repzo CRM and SQL databases, supporting reporting and analytics with platforms like Microsoft Power BI. It provides a TypeScript SDK with connection management, schema mapping, and data export utilities. Actively maintained with frequent releases, it is designed for ETL workflows. Ship with TypeScript types and ESM/CJS support.
npm install repzo-sql-connectorNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initializes a MySQL connection, connects, and triggers full data sync.
Update to object-based config: new SqlConnector({ host, port, ... }).Use connector.syncTables(['table1', 'table2']).
Update Node.js to v16+ and install tedious@15.
Consume the returned stream via pipeline() or response.pipe().
Use import { SqlConnector } from 'repzo-sql-connector' instead.Use other connectors for PostgreSQL or SQLite.
Run npm install repzo-sql-connector and ensure import uses correct case.
Use connector.syncTables() instead.
Start MySQL server or update configuration in connector constructor.
Check user and password in the connector config.
Update to object-based config (see breaking change warning).