npm install
Then you can begin development:
```sh
# npm
npm run dev
This will launch a nodemon process for automatic server restarts when your code changes.
Testing is powered by Jest. This project also uses supertest for demonstrating a simple routing smoke test suite.
Start the test runner in watch mode with:
# npm
npm testYou can also generate coverage with:
# npm
npm test -- --coverageDeployment is specific to hosting platform/provider but generally:
# npm
npm run buildwill compile your src into /dist, and
# npm
npm startwill run build (via the prestart hook) and start the compiled application from the /dist folder.
The last command is generally what most hosting providers use to start your application when deployed, so it should take care of everything.
You can find small guides for Heroku, App Engine and AWS in the deployment document.
email: quinten@test.test pass: testtest