MySQL adapter for the firenze.js ORM (v0.4.0), released in 2016. Provides a bridge between firenze's query builder and MySQL using a pool-based connection management. Last updated on npm in 2016, no active maintenance. Differentiates as a thin adapter for firenze's fluent API, but the firenze ORM itself is in maintenance mode. Requires firenze peer dependency.
npm install firenze-adapter-mysqlNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a MySQL database connection using firenze's Database class with the mysql adapter, configured via environment variables.
Consider migrating to a modern ORM like Sequelize or Prisma.
Use 'password' option for authentication; avoid raw string interpolation in queries.
Pass MysqlAdapter directly, not new MysqlAdapter(...).
Run: npm install --save firenze firenze-adapter-mysql
Use: new Database({ adapter: MysqlAdapter, ... })Verify DB_HOST, DB_USER, DB_PASSWORD environment variables or configuration.