Created
April 25, 2020 19:59
-
-
Save mohsentaleb/e804f5e46ae2aabf186aef455a3af486 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const bcrypt = require("bcryptjs"); | |
bcrypt.hash("password", 8, function(error, hash) { | |
console.log(hash); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment