Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nestrx/inflector
https://github.com/nestrx/inflector
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nestrx/inflector
- Owner: nestrx
- License: mit
- Created: 2019-04-29T08:32:23.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-04-30T04:58:26.000Z (over 5 years ago)
- Last Synced: 2024-10-08T01:47:30.795Z (about 1 month ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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) {
}
...
```