Simulate the Python backend to ease the frontend developments.
This is a NodeJS server providing the same API as the backend. It is powered by the Nest framework and written in TypeScript.
It has been initialized using [email protected]: npx @nestjs/cli new backend-mock-server
.
Node: see frontend requirements.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov