An open API service indexing awesome lists of open source software.

https://github.com/christian-007/nestjs-basic

Backend app created with NestJS along with TypeORM
https://github.com/christian-007/nestjs-basic

backend nestjs typeorm typescript

Last synced: about 2 months ago
JSON representation

Backend app created with NestJS along with TypeORM

Awesome Lists containing this project

README

          

# NestJS Basic App
A basic backend app created with NestJS and TypeORM.

**Note: the `ormconfig.json` is omitted. If you'd like to use this repo, please create your own Local Database and config the `ormconfig.json` just like [here](https://typeorm.io/#/using-ormconfig).*

## Installation

```bash
$ npm install
```

## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod
```

## References
- NestJS Website - [https://nestjs.com](https://nestjs.com/)
- TypeORM - [https://typeorm.io/#/](https://typeorm.io/#/)