How do I generate a password reset token in node.js that can be used in a url?
I just need the method for generating the token:
user.reset_password_token = ???;
user.reset_password_expire = expire_date;
Edit — here’s the solution:
user.reset_password_token = require('crypto').randomBytes(32).toString('hex');
I’m using this to generate my auth-token:
Crypto Node.js v0.8.9 Manual & Documentation