A WebSocket server for a small Tic-Tac-Toe multiplayer game.
After cloning the project, install the dependencies with npm install.
After that, you can start the development server using npx vite or npm run dev.
- Code formating (Eslint & Prettier):
npm run format - Production build:
npm run build - Start the project with production settings:
npm run start
At the project's root, create a .env file to set the following environment variables for development:
NODE_ENV=development
HOSTNAME=localhost
PORT=8080
See this project's goals on the websockets-client's repository.