First install the dependencies using npm install
and then npm run-script build:watch
for changes to be output into the build\src directory. Then run the app using node main.js
.
By default npm test
will run jest --coverage
.
npm start' or
npm run-script devwill use node-ts using the
--experimental-specifier-resolutionflag which enables the use of es modules. It will also enable the use of a debugger on port
9229using the following switch
--inspect=0.0.0.0:9229. Port
9229` is also enabled within the docker compose file.
Configure the .env file to specific which port should be used, port 4000 is set by default.