Install dependencies:
npm install
Install MongoDB
See nearest search engine
To start the database create directory "data" and run:
mongod --dbpath data
To start the web server, game server, and the client run:
npm start
If changes are made to the server or client while npm start
is running,
the code will be recompiled, the servers will be restarted, and the browser
will be updated automatically.
build/
Compiled filesclient/
Client source filesserver/
Server source files
Both the server and the client uses ES6 (see here and here).