Fastify KnexJS Plugin

Installation
npm install fastify-knexjs --save
Usage
fastify.register(require('fastify-knexjs'), options, (err) =>
console.error(err)
);
fastify.get('/', (request, reply) => {
console.log(fastify.knex); // Knex DB instance
});