I created expressjs application using the following commands:
express -e folderName
npm install ejs --save
npm install
When I run the appli
This is because the port you are using to run the script is already in use. You have to stop all other nodes which are using that post. for that, you can check all node by
ps -e
OR for node process only use ps -ef | grep node
This will give you the list of all node process with id
to Kill all node process
sudo killall -9 node
Or for the specific id sudo kill -9 id