Simple user management app using Node.js and Redis
Make sure you have Redis installed and running
Install Dependencies
$ npm install
Run Server
$ npm start
$ wget http://download.redis.io/redis-stable.tar.gz
$ tar xvzf redis-stable.tar.gz
$ cd redis-stable
$ make
$ make test
$ sudo cp src/redis-server /usr/local/bin/
$ sudo cp src/redis-cli /usr/local/bin/
$ redis-server
$ redis-cli ping //output: PONG
$ redis-cli
Visit http://localhost:3000