- Issue an
npm installcommand.
- Issue an
npm run devcommand. - Initiate a
GET http://localhost:4400/api/hello(e.g. with the REST Client from therequests.http) file.
- Issue an
npm test -- app.test.tscommand. - This run the tests from the
app.test.tsfile to check the test framework is set up properly.
- Start a development server in watch mode:
npm run dev. - Run all tests:
npm test. - Run a specific test file
npm test -- <file name>. - Create a production build (TS -> JS):
npm run build. - Start the production build:
npm start.
Check the tasks.md for the details.