This repository contains a total of 3 applications.
- 1 backend server
- 2 react applications
simulating, real-time (socket) communication between server and client.
You need have to run 3 different terminals / command prompts as we'll be running 3 different dev servers.
# 1. Running the node server
cd server
npm start# 2. Running the 1st react dev server
cd project1
npm start
# Now, access your running server on the browser. Link: http://localhost:3001
# 3. Running the 2nd react dev server
cd project2
npm start
# Now, access your running server on the browser. Link: http://localhost:3002