sequelize-bcrypt
v1.2.0
Published
Sequelize helper plugin to hash/compare fields
Downloads
1,153
Maintainers
Readme
sequelize-bcrypt
Installation
npm i sequelize-bcrypt
Setup
const { Sequelize, DataTypes } = require('sequelize');
const useBcrypt = require('sequelize-bcrypt');
const database = new Sequelize({
...sequelizeConnectionOptions,
});
const User = database.define('User', {
email: { type: DataTypes.STRING },
password: { type: DataTypes.STRING },
});
useBcrypt(User, options);
Options
{
field: 'password', // secret field to hash, default: 'password'
rounds: 12, // used to generate bcrypt salt, default: 12
compare: 'authenticate', // method used to compare secrets, default: 'authenticate'
}
Usage
User.create({ email: '[email protected]', password: 'SuperSecret!' });
// { id: 1, email: '[email protected]', password: '$2a$12$VtyL7j5xx6t/GmmAqy53ZuKJ1nwPox5kHLXDaottN9tIQBsEB3EsW' }
const user = await User.findOne({ where: { email: '[email protected]' } });
user.authenticate('WrongPassword!'); // false
user.authenticate('SuperSecret!'); // true