NestJS template with everything you need to get started
- Uses commitlint to keep commits clean and tidy
- Uses eslint, prettier, husky and lint-staged to automatically format code
- Uses swc for speedy compilation
- Uses TypeScript with strict mode for improved code correctness
- Enabled helmet and cors for basic security
- Uses bun
- Uses zod for schema validation
- Uses Docker for containerization
- Uses Github Actions for workflows
$ bun install
# development
$ bun run start
# watch mode
$ bun run start:dev
# production mode
$ bun run start:prod
# unit tests
$ bun run test
# e2e tests
$ bun run test:e2e
# test coverage
$ bun run test:cov
This is MIT licensed.