A nostalgic classic game, built on Node.js with Express.js, you can try it out on this website
Running snake game server locally by following instructions below.
$ git clone https://github.com/Phiphi0912/snake-game.git
$ cd snake-game
$ npm install
Please reference .env.example to create a .env file for app functionality.
PORT=<your_port>
Simpily do:
$ node app.js
Or you can install nodemon then run the following script for better developing experience.
$ npm run dev