You will require NPM or Yarn, and preferable an editor that supports JavaScript/TypeScript.
If using NPM, npm i
.
npm start
To check for link errors, run npm run lint
or yarn lint
.
To fix some error automatically, run npm run lint-fix
or yarn lint-fix
. Rest of the
errors will need to be fixed manually.
Test are written using Jest. Two NPM scripts are provided to run the tests.
Run tests and watch for changes with npm run test
.
Run tests once and exit with `npm run test-no-watch'.