This is a basic node app. You can download it and start your new project easily. I have added few necessary modules in it.
You can update or uninstall the packages by following the below commands.
Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications. You can read more on express
npm install --save express
npm update --save express
npm uninstall --save express
Request is designed to be the simplest way possible to make http calls. It supports HTTPS and follows redirects by default. You can read more on request
npm install --save request
npm update --save request
npm uninstall --save request
Async is a utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript. It is originally designed for use with Node.js. You can read more on async
npm install --save async
npm update --save async
npm uninstall --save async
Grunt: a task-based command line build tool for JavaScript projects. I have installed grunt as dev package because when we deploy package on a server we don’t want our development packages published on the server. You can read more on grunt
npm install --save-dev grunt
npm update --save-dev grunt
npm uninstall --save-dev grunt
Just clone the repository and go the the folder on your command line and run following command. After that you can open demo page on your localhost on port 3000. You can change the port in app.js
node app.js