@Peter Zilz Peter Zilz authored on 3 Oct 2018
.vscode Created base setup of typescript in vs code. 6 years ago
src Improved navigation functionality. 6 years ago
.gitignore Created base setup of typescript in vs code. 6 years ago
Labyrinth.code-workspace Created base setup of typescript in vs code. 6 years ago
README.MD Improved navigation functionality. 6 years ago
package-lock.json Introduced BDD-style tests with mocha and chai. 6 years ago
package.json Introduced BDD-style tests with mocha and chai. 6 years ago
tsconfig.json Created base setup of typescript in vs code. 6 years ago
tslint.json Removed "endpoint", introduced GameServer to handle logic. 6 years ago
README.MD

Labyrinth

About

Labyrinth is a web api to navigate through a maze.

How to run

Install

Install typescript and tslint globally, if you haven't aready.

npm install -g typescript tslint

Local dependencies:

npm install

Build

Compile TypeScript to JavaScript.

tsc

Executing this in the application's root folder will apply the settings from tsconfig.json.

Run

Run the application.

node dist/app.js

Execute tests

npm test