Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 682 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 682 Bytes

Cows in Space

Setup

Install dependencies:

npm install

Install MongoDB

See nearest search engine

Run

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.

Project Structure

  • build/ Compiled files
  • client/ Client source files
  • server/ Server source files

Both the server and the client uses ES6 (see here and here).