ExpressJS Buat kata sandi terenkripsi

// To encrypt passwords use bcrypt

>> npm install bcrypt

const bcrypt = require('bcrypt');

bcrypt.hash('somePassowrd', 12).then(hash => {
    console.log(hash);
});
Ham-Solo