Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 669 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 669 Bytes

Socket Games

Implementation of several simple multiplayer games, so far:

  • Four in a row
  • Five in a row

image

Deployed at https://socket-games.vercel.app/

Coming soon?

  • Noughts and crosses
  • Poker?

Built using TypeScript, React, Vite, Node.js, Express and Socket.IO.

Local Dev

To run the server locally, run the following from the root of the repo:

cd ./server
npm install
npm run start

To run the client locally, run the following from the root of the repo:

cd ./client
npm install
npm run start