An example NestJS typescript NodeJS API with Swagger OpenAPI Specifications
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# View Swagger Open API docs
Open http://localhost:3000/api in a browser
# View Swagger API JSON
Open http://localhost:3000/api-json in a browser
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov