####A basic login & account management system built in Node.js with the following features :
- New User Account Creation
- Secure Password Reset via Email
- Ability to Update / Delete Account
- Session Tracking for Logged-In Users
- Local Cookie Storage for Returning Users
- Blowfish-based Scheme Password Encryption
####Node-Login is built on top of the following libraries :
- Node.js - Application Server
- Express.js - Node.js Web Framework
- MongoDb - Database Storage
- node.bcrypt.js Password Cryptography
- Jade - HTML Templating Engine
- Stylus - CSS Preprocessor
- EmailJS - Node.js > SMTP Server Middleware
- Moment.js - Lightweight Date Library
- Twitter Bootstrap - UI Component & Layout Library
A Live Demo and some thoughts about the app's architecture.
####Installation & Setup This assumes you already have node.js & npm installed.
git clone git://github.com/braitsch/node-login.git node-login
cd node-login
npm install -d
node app
For testing purposes, I've provided a database dump of all accounts here.
Please note this list and the entire database automatically resets every 24 hours.
Questions and suggestions for improvement are welcome.