YouTube: https://www.youtube.com/watch?v=AWHGQfzfHxI&list=PLqm86YkewF6RU_k6jymVX7EavJ1w9i4VW&ab_channel=ModernWeb
First fork the repo or clone it then open it with your code editor --> in your terminal run the command →
npm install (it’ll install the dependencies)
node server.js (it’ll start running the app’s server)
Note: you can use → nodemon server.js (instead of → node server.js) to run the server
install nodemon :
npm install --g nodemon
We use nodemon so that we don't need to reconnect our server while making any change in node.js, it'll automatically reconnect our server (it’ll save our time while developing 😀) Then, after running the backend server --> go to the http://localhost:3000 url --> the site will visually appear in your browser locally (in development mode).