Real-time IRC like chatting application created with React, Node.js and websockets.
To start the application on your local machine follow the steps below.
git clone https://github.com/ZirixCZ/DeltaChat
cd /client
npm install
npm run start
To change the socket.io receiving server navigate into client/src/modules/Socket.js
and change the SERVER
constant.
const SERVER = "https://my-server.com/"
To start the server, navigate into /server
and install all packages with npm install
.
Then change the origin in server/lib/server.js
to the address of your client.