####A basic login & account management system built in Node.js with the following features :
- New User Account Creation
- Ability to Update / Delete Account
- Session Tracking for Logged-In Users
- Local Cookie Storage for Returning Users
- Blowfish-based Scheme Password Encryption
####Node-Login-MySql is built on top of the following libraries :
- Node.js - Application Server
- Express.js - Node.js Web Framework
- MySql - Database Storage
- Jade - HTML Templating Engine
- Stylus - CSS Preprocessor
- Moment.js - Lightweight Date Library
- Twitter Bootstrap - UI Component & Layout Library
####Installation & Setup This assumes you already have node.js & npm installed, as well as a running MySql server.
git clone git://github.com/Naltharial/node-login.git node-login
cd node-login
npm install -d
Update MySql information in server/modules/account-manager.js.
Run db.sql on the selected MySql database.
Use npm app to start the application.
Original repository at github.com/braitsch.