This is the open-source level-editor for Crash n Dash, and it can be seen in action at (https://levels.crashndash.com).
Requires the following stack to run:
- Node js
- Redis
- Clone this repository:
git clone https://github.com/crashndash/level-crash - Enter the directory:
cd level-crash - Install dependencies:
npm install - Start the server:
node index.js
The server will by default be available at (http://localhost:4000)
Tests are run with karma and mocha. All dependencies should get installed with
npm install
To run the backend tests, run make test.
To run the frontend tests, run make test-front
To contribute, check out the repository.
Please make sure all tests are passing (see above). This project has 100% test coverage on both frontend and backend, so when adding features, please also add tests.