1.0.3 ā€¢ Published 3 years ago

@vvni/fastify-knex v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

@vvni/fastify-knex

šŸ’¼ Fastify Knex Plugin for supporting many databases (MySQL, PostgreSQL, Maria, Oracle, MSSQL).

Test code style: prettier

Installation

npm install @vvni/fastify-knex --save

Usage

const knex = require("@vvni/fastify-knex");

// KnexJS client DB configuration JSON object.
fastify.register(knex, {
  client: "mysql2",
  // ... other options
});

fastify.get("/", (request, reply) => {
  console.log(fastify.knex); // Knex DB instance
});

@vvni/fastify-knex options

License

MIT

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago