Snake game is a very popular video game. This is a multiplayer take on the genre.
Before you can run this client, you will need to be running the server side which you can download and install from here.
This project was created by me as part of my learnings at Lighthouse Labs.
Node version 12.x and npm version 6.x were used during game client development & testing.
- Follow steps inside the snek server repo to run the server side
- Run the development snake client using the
node play.js
command
- Move the snake over the red dots to eat them and grow looooonger π
- Be careful not to steer the snake into walls, other snakes, or its own tail
- Collisions really annoy the snake and the first one will mean
Game Over
- Collisions really annoy the snake and the first one will mean
- Have fun π
- Use your
W
A
S
D
keys to navigate your snakeup
,left
,down
, andright
- Send some friendly banter to other players using numbered keys
1
,2
, and3
- To exit the game, press
Ctrl+C
The snek server code was not written from scratch. It is a heavily modified version of the single player game Snek created by Tania Rascia.