- Run
npm install
- Run the server
npm run start:server
- Run the client
npm start
- Access the client by going to the browser and enter http://localhost:3000
- Register a user
- Start chatting
You can make it public using your computer/laptop
Note: You need to run the client and service first before doing this
WARNING: This may expose your computer to malicious threats such as virus or unwanted scripts if the wrong people can access the URL. Use it for development and testing only. Do not use it for real consumer applications
- Run
npm install -g ngrok
- Run
npm install -g localtunnel
- Run
ngrok tcp 8080
or your server port number and you will get a public URL for your server access - Change the URL on
/src/config/config.js
to the URL returned by ngrok - Run
lt --port 3000 --subdomain [domaincustom]
or your client port number and you will get a public URL for your client access - Access the client public URL on your browser