An anonymous chatting server you can deploy for your friends. See it in action: https://sendverse.herokuapp.com/
This repo includes the server side and frontend software required to run your own chatting app. The software is written in javascript. It uses Express.js to serve files, and socket.io, for the the realtime communication between the server and client.
In this repo, you will find the server-side software, app.js, and the frontend, deployable software, located in the public directory. The frontend src files are located in the src directory.
To clone this repo:
git clone https://github.com/liam-ilan/sendverse.git
To start up a local server on port 3000:
npm start
Or you can:
Start up a localhost on port 3000 for development with Nodemon and Webpack:
npm run dev
Lint javascript:
npm run lint
I'm Liam Ilan, a 13 year old software developer who is never working, but always playing around.