Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nestrx/restful
- Owner: nestrx
- License: mit
- Created: 2019-04-05T20:30:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-22T16:29:09.000Z (over 5 years ago)
- Last Synced: 2024-09-25T22:00:05.153Z (about 2 months ago)
- Topics: mongoose, nestjs, restful, typeorm
- Language: TypeScript
- Homepage:
- Size: 13.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
...
],
...
})
...
```