Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nestrx/inflector


https://github.com/nestrx/inflector

Last synced: 7 days ago
JSON representation

Awesome Lists containing this project

README

        

# Inflector
Inflector helper module for [NestJS framework](https://nestjs.com/).

## Installation

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

## Configure

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

## Usage

your.service.ts

```ts
...
@Injectable()
export class YourService {
constructor(private injector: InflectorService) {
}
...
```