fastify-bookshelfjs

2.0.0 • Public • Published

Fastify BookshelfJS Plugin

Bookshelf.js is a Javascript ORM built on top of knex.js. This plugin adds a shared bookshelf object to fastify that can be accessed from anywhere.

Installation

$ yarn add fastify-bookshelfjs

# Then add one of the following:
$ yarn add pg
$ yarn add sqlite3
$ yarn add mysql
$ yarn add mysql2
$ yarn add mariasql
$ yarn add strong-oracle
$ yarn add oracle
$ yarn add mssql

Usage

const bookshelf = require('fastify-bookshelfjs');

fastify.register(bookshelf, {
  client: 'pg',
  connection: {
    host: '127.0.0.1',
    user: 'your_database_user',
    password: 'your_database_password',
    database: 'myapp_test',
  },
});

fastify.get('/', (request, reply) => {
  console.log(fastify.bookshelf); // bookshelf object
});

Further reading

Bookshelf used knex.js refer to knexjs docs for connection options.

Bookshelf Docs

Version

v2.0.0

License

Licensed under MIT.

Package Sidebar

Install

npm i fastify-bookshelfjs

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

9.75 kB

Total Files

18

Last publish

Collaborators

  • butlerx