War penguins is a multiplayer game made with HTML5 and Node.js
To run the project you need to have Node.js installed on your computer.
- Clone the project
- Run
yarn
to install the dependencies - Run
yarn dev
oryarn dev:nodemon
to start a local server - Open your browser and go to
http://localhost:3000
- Enjoy!
The War Penguins build upon multiple libraries.
These libraries are specified in the package.json
and can be installed with the yarn
commando.
To be able to run the project some environment variables are needed. Create your own .env
file in the root of the project and copy the content of the .env.example
file.
For a better developing experience this project makes use of the Nodeman dependence.
Nodemon is a utility that will monitor for any changes in your source and automatically restart your server.
Running yarn dev:nodemon
will automatically restart the server when changes are made.