Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Basics of Node.js

A simple example web app written with Node.js without using other frameworks like Express.js.

Run App

  • Install dependency packages with npm install.

  • Run node app.js and open the web app at localhost:3000. While developing the app, we can also run npm start - this will automatically restart the app whenever new changes are added to the source code.

  • To debug app, install nodemon globally with npm i -g nodemon, then in VS Code run debugging by calling Run > Start Debugging.

App Capture