A messaging app originally made for a Software Development assessment.
- npm: Node.js (Node.js runtime + npm)
- pnpm:
- via npm
npm install -g pnpm
- or installation instructions
- via npm
Installing client-side dependencies
pnpm install
Installing server-side dependencies
cd ./server
npm install
Running either server will hang the terminal in use, so make sure to open one for each. Ensure commands are being run from the root directory of the project.
Starting the client server (vite)
pnpm run dev
Starting the game server (colyseus)
cd ./server
npm run start
Building for production is currently not set up. Please refer to Development.