- nest - nest framework
- mongoose - mongodb object modeling
ts-migrate-mongoose - mongoose migration framework🚧ts-patch-mongoose - mongoose patch history & events🚧- ts-cache-mongoose - mongoose cache (in-memory, redis) ✅
- typescript 5
You can run mongo locally using docker:
docker pull mongo
docker run -p 27017:27017 --name mongo -d mongo
Nest framework TypeScript starter repository.
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov