CS375 Final Project
- Make sure to pull before working:
git pull
- If changes you're making are dependent on other files, create a branch and do pull request:
git branch [branch_name]
git checkout [branch_name]
We are using Socket.io. Which enables us to send messages between clients and server in real-time. The idea is that based on those messages the client/server can acts accordingly.
Examples: The client sends "START GAME" message and the server begins dealing the card.
cd serverCAH
npm install
npm start