1.0.4 • Published 6 years ago

fastify-sequelize v1.0.4

Weekly downloads
177
License
MIT
Repository
-
Last release
6 years ago

fastify-sequelize

Fastity plugin work with Sequelize (adapter for NodeJS -> Sqlite, Mysql, Mssql, Posgres)

install

npm install fastify-sequelize

Usage

const fastify = require('fastify')()
const fsequelize = require('fastify-sequelize')

const sequelizeConfig = {
    instance: 'sequelize', // the name of fastify plugin instance.
    autoConnect: true, // auto authentication and test connection on first run
    
    // other sequelize config goes here
    dialect: 'sqlite',

    // SQLite only
    storage: 'path/to/db.sqlite'
}

fastify
    .register(fsequelize, sequelizeConfig)
    .ready()

fastify.listen(3000, () => {
  console.log('> listening on port 3000')
})
  • instance: (optional) the name of instance will be mapped to fastify, default is sequelize
  • autoConnect: default: true auto authentication and test connection on first run.
  • sequelizeConfig: all sequelize configurations, you can see here.
1.0.4

6 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago