This tutorial is for beginners who wanted to start with Node.js. We will be creating a simple website with Node.js and the Express framework and will be using EJS view engine to manage our HTML code
Prerequisites
Step 1: Install nodejs and npm
Follow links as per your development environment
If everything installed correctly, open terminal and type node -v and npm -v and you should get the following output based on the version you have installed
node -v
v12.18.0
npm -v
6.14.10
Step 2: Install Express generator package globally (g stand for global in command)
npm…