Real-time multiplayer game of three dimensional Tic-Tac-Toe
Players: max 2
Tools: Node.js, Javascipt, HTML, CSS
- Dynamic CSS and HTML
- Created login with a password
- Encrypted passwords
- Cookie creation to keep users logged in
- Logging out function
- Hovering during gameplay
- Different colors for each player
- Surrender button
- Reset button
- 3D UI
Install all the dependencies from package.json using the command:
npm install
- Passport
- Express
- Express Session
- Socket.io (client & server)
- Mongoose
- BcryptJS
- Cookie-parser
Run the game using the command:
node server.js
The program will be displayed in localhost:25042
- Implementation of login was referenced from these tutorial videos (Part 1, 2, and 3)