Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nestrx/restful

NestJS Module is predefined form of inheritance structure for API when working with Mongoose
https://github.com/nestrx/restful

mongoose nestjs restful typeorm

Last synced: 17 days ago
JSON representation

NestJS Module is predefined form of inheritance structure for API when working with Mongoose

Awesome Lists containing this project

README

        

# Restful
Restful is an [NestJS](https://nestjs.com/) module predefined form of inheritance structure for API when working with [Mongoose](https://mongoosejs.com/) .

## Installation

npm:
```bash
npm i @nestrx/restful
```
yan
```bash
yan add @nestrx/restful
```

## Configure

app.module.ts
```ts
...
@Module({
...
imports: [
...
RestfulModule.forRoot()
...
],
...
})
...
```