Getting Started
In the root folder there are two folders :D
The first folder : socket-io-server
It contains the io socket server. in order to run the server, run the commands bellow :
- npm install
- npm start
The second folder : NextChat
It contains the next js chat application. In order to run the application, run the commands bellow :
- npm install
- npm run dev
- Go to : http://localhost:9000 (by default)
Description
NextChat is a simple react-based chat application. Each client join the chat can send messages to the other members. The library Socket.IO is used for bi-directional communication between clients. Enjoy.