Skip to content

thakurinbox/npm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Basic node app with most required modules/packages

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

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

Install express and save it in your packages
npm install --save express
Update express and save it in your packages
npm update --save express
Uninstall express and remove from packages
npm uninstall --save express

request

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

Install request and save it in your packages
npm install --save request
Update request and save it in your packages
npm update --save request
Uninstall request and remove from packages
npm uninstall --save request

async

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

Install async and save it in your packages
npm install --save async
Update async and save it in your packages
npm update --save async
Uninstall async and remove from packages
npm uninstall --save async

grunt

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

Install grunt and save it in your packages
npm install --save-dev grunt
Update grunt and save it in your packages
npm update --save-dev grunt
Uninstall grunt and remove from packages
npm uninstall --save-dev grunt

How to test app.

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

About

Its basic demo node app with required modules/packages to start with.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published