Tutorial by Topics: passport

Password must always be hashed. A simple way to secure passwords using NodeJS would be to use bcrypt-nodejs module.
Passport is a popular authorisation module for node. In simple words it handles all the authorisation requests on your app by users. Passport supports over 300 strategies so that you can easily integrate login with Facebook / Google or any other social network using it. The strategy that we will dis...

Page 1 of 1