- Redis
- NPM
- Node.js
wget http://download.redis.io/redis-stable.tar.gz
tar xvzf redis-stable.tar.gz
cd redis-stable
make
sudo make installAfter installation ends, open a new terminal and start the server by typing 'redis-server'
curl -L https://www.npmjs.com/install.sh | shcurl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
nvm alias default 6.8After installing everything just cd into the project's folder and start installing the modules by typing:
npm installAfter installing all the modules you can start the app by typing:
npm startAfter running the command you can access the app by accessing http://localhost:3000/ in your browser. If you wish to perform simple automated tests in the API, I've included some postman test files in the root of the project.