Details
-
Task
-
Status: Open (View Workflow)
-
Minor
-
Resolution: Unresolved
-
None
-
None
-
None
-
None
Description
from https://github.com/MariaDB/mariadb-connector-nodejs/issues/57
The Sequelize integration was incredible! Ready for Knex?
Wondering if everything already works?
Once I test it out...I'll let you know
Knex
https://www.npmjs.com/package/knex
Weekly Downloads: 283,939
Node.js
The primary target environment for Knex is Node.js, you will need to install the knex library, and then install the appropriate database library: pg for PostgreSQL and Amazon Redshift, mysql for MySQL or MariaDB, sqlite3 for SQLite3, or mssql for MSSQL.
$ npm install knex --save
- Then add one of the following (adding a --save) flag:
$ npm install pg
$ npm install sqlite3
$ npm install mysql
$ npm install mysql2
$ npm install oracle
$ npm install mssql
---> ### If you want to use a MariaDB instance, you can use the mysql driver.