Chat App build with React, Express and Socket.io
Install the dependencies and devDependencies and start the application. Server listens PORT 5000 and client runs on PORT 3000
$ git clone https://github.com/anilasimbilen/react-socketio-chatapp.git
$ cd react-socketio-chatapp
$ npm install -d
$ npm install --prefix client
$ npm install --prefix server
$ npm start
Configure the server address on client/constants/config.js
export const SERVER_ADDRESS = "<SERVER_ADDRESS_HERE>"; // e.g. http://localhost:5000