Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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