Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 716 Bytes

File metadata and controls

43 lines (28 loc) · 716 Bytes

backend-mock-server

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.

Installation

Node: see frontend requirements.

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov