/learning_node.js

Contains various sub-modules which were solved while learning node.js

Primary LanguageHTML

learning_node.js

Contains various sub-modules which were solved while learning node.js

Few Commands to start with

**Create package.json file in a interactive fashion **

npm init

**Add dependencies or modules to project. This will add dependency to the package.json file **

npm install express --save

**Install all dependencies mentioned in package.json in the local project (i.e. node_module directory) **

npm install

Run the project, file mentioned in main field in package.json file is executed

npm start