expressjs crea contraseña encriptada
// To encrypt passwords use bcrypt
>> npm install bcrypt
const bcrypt = require('bcrypt');
bcrypt.hash('somePassowrd', 12).then(hash => {
console.log(hash);
});
Ham-Solo