Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 466 Bytes

README.md

File metadata and controls

41 lines (28 loc) · 466 Bytes

Nest.js Demo with Fastify and Swagger

教程文档链接: https://leader.js.cool/#/basic/framework/nest

安装

$ npm install

运行

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

生成自动文档:

npx compodoc -p tsconfig.json -s

测试

# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov