- Please make sure you have installed the
environment for nodejs
. If you install it, installnvm
, it helps us to manage multiple node versions and easily switch node versions. - Make sure you have
nodemon
installed if not then use the commandnpm install -g nodemon
. - Install dependencies:
npm install
oryarn
. - Create
.env
file atroot
directory to setup environment variables:
APP_PORT = 3500
- Start the server:
npm start
ornodemon app.js
. - View locally on:
localhost:3500
||localhost:3000
.