diff --git a/README.md b/README.md index 150b8d32..e596fb25 100644 --- a/README.md +++ b/README.md @@ -4,17 +4,29 @@ ### [🌟 Become a top 1% Next.js developer in only one course](https://jsmastery.pro/next15) ### [🚀 Land your dream programming job in 6 months](https://jsmastery.pro/masterclass) +### [📚 Access comprehensive web development resources](https://jsmastery.pro/resources) ![Chat Application](https://i.ytimg.com/vi/ZwFA3YMfkoc/maxresdefault.jpg) ## Introduction This is a code repository for the corresponding video tutorial. -In this video, we will create a full Realtime Chat Application. We're going to use React on the front end, with NodeJS + Socket.io web socket library on the back end. +In this video, we will create a full Realtime Chat Application. We're going to use React on the front end, with NodeJS + Socket.io web socket library on the back end. This application demonstrates the power of real-time communication in web applications. By the end of this video, you will have a strong understanding of how to send and receive messages using web sockets and Socket.io to make any real-time application. ## Launch your development career with project-based coaching - https://www.jsmastery.pro -Setup: -- run ```npm i && npm start``` for both client and server side to start the development server +## Setup: +1. Clone the repository +2. Install dependencies: + ``` + cd client && npm install + cd ../server && npm install + ``` +3. Start the development servers: + ``` + cd client && npm start + cd ../server && npm start + ``` +4. Open your browser and go to http://localhost:3000