Skip to content

Latest commit

 

History

History
45 lines (30 loc) · 703 Bytes

File metadata and controls

45 lines (30 loc) · 703 Bytes

Nest Logo

An example NestJS typescript NodeJS API with Swagger OpenAPI Specifications

Installation

$ npm install

Running the app

# 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

Test

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov