Monthly Archives: January 2016

Node JS Links of the Day – Signup Flows Day #2

Bcrypt password hashing in Nodejs: https://www.npmjs.com/package/bcrypt-nodejs It’s important to hash passwords so, if your database is somehow leaked, the attacker can’t retrieve user passwords. Bcrypt is better than MD5 because it is designed to be memory bound and thus much

Posted in Node.js

Node JS Links of the Day – Signup Flows

I’m working on some signup flows in NodeJs today. Login/Signup/Confirm/Forgot Password/Etc. Here’s the stuff I looked up: Send email with Node JS : https://nodemailer.com/ How to implement password reset in NodeJS: http://sahatyalkabov.com/how-to-implement-password-reset-in-nodejs/ Password Strength Estimator: https://github.com/dropbox/zxcvbn Recaptcha integration with NodeJS:

Posted in Node.js