Start project with npm init -y ( basic package.json wil be created by this )
Install Dependecies ( npm i "xyz" ) such as -
- express - for server
- ejs - templating languges
- socket.io - help us to communicate back and forth easily
- uuid - this help us to create dynamic url ( with different room number inside it )
- do install npm i --save-dev nodemon ( we donot need to restart server again and again )
Include nodemon in Script { "devstart" : "nodemon server.js" } ==> npm run devstart
+> Set-Up the Basic Expres server ( server is only for setting up the room ==> ( peer to peer connection ))