This small repository was created to show few basic things about NodeJS.
File bare.js is showing how to create simplest Hello World application.
To start it, you need to execute:
node bare.jsAfter that, you should be able to see Hello World at http://localhost:3001/.
File express.js shows simple ExpressJS example. Also, this file
shows how we can link files together.
To start it, you need to execute:
node express.jsFile index.js shows how to create ExpressJS creating HTML with Pug
and how to host static files.