Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
hapi-sequelize
Advanced tools
This project is no longer actively maintained. The current version has been tested for versions of Hapi up to 13.x & Sequelize 3.x. It is known to be incompatible with versions of Hapi 17+ & Sequelize 4+.
There is a great fork of this project that has been in active development located at: https://github.com/valtlfelipe/hapi-sequelizejs
npm install --save hapi-sequelize
Simply pass in your sequelize instance and a few basic options and voila. Options accepts a single object or an array for multiple dbs.
server.register([
{
register: require('hapi-sequelize'),
options: [
{
name: 'dbname', // identifier
models: ['./server/models/**/*.js'], // paths/globs to model files
sequelize: new Sequelize(config, opts), // sequelize instance
sync: true, // sync models - default false
forceSync: false, // force sync (drops tables) - default false
onConnect: function (database) { // Optional
// migrations, seeders, etc.
}
}
]
}
]);
Each registration adds a DB instance to the server.plugins['hapi-sequelize']
object with the
name option as the key.
function DB(sequelize, models) {
this.sequelize = sequelize;
this.models = models;
}
// smth like this
server.plugins['hapi-sequelize'][opts.name] = new DB(opts.sequelize, models);
If you use Glue to compose your server, you'll need to load hapi-sequelize
like this;
var manifest = require('./config/manifest');
manifest.registrations.push({
"plugin": {
"register": "hapi-sequelize",
"options": {
"name": "name",
"models": 'models/models/*.js',
"sequelize": new Sequelize(config, opts),
"sync": true,
"forceSync": false // force sync (drops tables) - default false
}
}
})
// Load the manifest and start the server
getDb(name)
The request object gets decorated with the method getDb
. This allows you to easily grab a
DB instance in a route handler. If you have multiple registrations pass the name of the one
you would like returned or else the single or first registration will be returned.
handler(request, reply) {
const db1 = request.getDb('db1');
console.log(db1.sequelize);
console.log(db1.models);
}
db.getModel('User')
Returns single model that matches the passed argument or null if the model doesn't exist.
db.getModels()
Returns all models on the db instance
If you have any ideas for useful additions to the API or any other improvements to the plugin please open an issue or a PR.
Also feel free to tackle any of the outstanding todo's in the issues. These are mostly currently for testing, documentation. I hope to at least provide a reliable, developer friendly plugin.
FAQs
A Hapi plugin for the fabulous Sequelize ORM
We found that hapi-sequelize demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.