Skip to content

c9 BE (NestJS 11)

Backend API built with NestJS 11

Tech Stack

  • NestJS 11
  • TypeORM
  • MySQL
  • Redis
  • JWT
  • Swagger
  • i18n
  • Zod

Development

bash
yarn install
yarn dev    # http://localhost:8080

Scripts

ScriptCommand
yarn buildnest build
yarn formatprettier --write "src/**/*.ts" "test/**/*.ts"
yarn startnest start
yarn start:devnest start --watch
yarn start:debugnest start --debug --watch
yarn start:prodnode dist/main
yarn linteslint "{src,apps,libs,test}/**/*.ts" --fix
yarn testjest
yarn test:watchjest --watch
yarn test:covjest --coverage
yarn test:debugnode --inspect-brk -r tsconfig-paths/register -r ts-node/reg...
yarn test:e2ejest --config ./test/jest-e2e.json