Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ilovepixelart/ts-express-nest
Nest.js express starter
https://github.com/ilovepixelart/ts-express-nest
Last synced: 30 days ago
JSON representation
Nest.js express starter
- Host: GitHub
- URL: https://github.com/ilovepixelart/ts-express-nest
- Owner: ilovepixelart
- Created: 2023-11-10T21:42:09.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-09-19T11:52:46.000Z (2 months ago)
- Last Synced: 2024-10-10T07:57:11.483Z (about 1 month ago)
- Language: TypeScript
- Size: 631 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nest + Express.js + TypeScript 5
* [nest](https://github.com/nestjs/nest) - nest framework
* [mongoose](https://mongoosejs.com/) - mongodb object modeling
* ~~[ts-migrate-mongoose](https://github.com/ilovepixelart/ts-migrate-mongoose) - mongoose migration framework~~ 🚧
* ~~[ts-patch-mongoose](https://github.com/ilovepixelart/ts-migrate-mongoose) - mongoose patch history & events~~ 🚧
* [ts-cache-mongoose](https://github.com/ilovepixelart/ts-cache-mongoose) - mongoose cache (in-memory, redis) ✅
* [typescript 5](https://www.typescriptlang.org/)You can run it using docker:
```bash
docker compose build
docker compose up
```[Nest](https://github.com/nestjs/nest) framework TypeScript starter repository.
## Installation
```bash
npm install
```## Running the app
```bash
# development
npm run start# watch mode
npm run start:dev# production mode
npm run start:prod
```## Test
```bash
# unit tests
npm run test# e2e tests
npm run test:e2e# test coverage
npm run test:cov
```