3
3
</p >
4
4
5
5
<div align =" center " >
6
- <img src =" https://img.shields.io/badge/npm-v0.0 .1-blue " alt =" npm version " >
6
+ <img src =" https://img.shields.io/badge/npm-v0.2 .1-blue " alt =" npm version " >
7
7
<img src =" https://img.shields.io/badge/license-MIT-green " alt =" License " >
8
8
</div >
9
9
@@ -16,8 +16,9 @@ With this library, you can inject dependencies into classes without the need for
16
16
17
17
## Features
18
18
19
- - ` @AutoInjectable() ` decorator allows classes to be automatically injectable for DI.
20
19
- ` @ComponentScan() ` decorator enables automatic scanning and injection of classes within a module.
20
+ - ` @AutoInjectable() ` decorator allows classes to be automatically injectable for DI.
21
+ - ` @AutoController() ` decorator automatically registers controllers.
21
22
22
23
## Installation
23
24
@@ -29,62 +30,67 @@ npm install @tiny-nestjs/auto-injectable
29
30
30
31
** 1. ` @ComponentScan() ` **
31
32
32
- Use ` @ComponentScan() ` decorator to enable automatic scanning and injection of classes within a module:
33
-
34
- ``` typescript
35
- import { Module } from ' @nestjs/common' ;
36
- import { AppService } from ' ./app.service' ;
37
- import { AppController } from ' ./app.controller' ;
38
- import { ComponentScan } from ' @nestjs/auto-injectable' ;
39
-
40
- @ComponentScan ()
41
- @Module ({
42
- imports: [],
43
- controllers: [AppController ],
44
- providers: [AppService ],
45
- })
46
- export class AppModule {}
47
- ```
48
-
49
- By applying the ` @ComponentScan() ` decorator to the AppModule class, Nest will automatically scan for classes and
50
- inject necessary dependencies.
33
+ ``` ts
34
+ import { Module } from ' @nestjs/common' ;
35
+ import { ComponentScan } from ' @tiny-nestjs/auto-injectable' ;
36
+
37
+ @ComponentScan ()
38
+ @Module ({
39
+ imports: [],
40
+ controllers: [],
41
+ providers: [],
42
+ })
43
+ export class AppModule {
44
+ }
45
+ ```
46
+
47
+ By applying the ` @ComponentScan() ` decorator to the AppModule class, Nest will automatically scan for classes and
48
+ inject necessary dependencies.
51
49
52
50
** 2. ` @AutoInjectable() ` **
53
51
54
- Use ` @AutoInjectable() ` decorator to make a class injectable for DI:
52
+ ``` ts
53
+ import { AutoInjectable } from ' @tiny-nestjs/auto-injectable' ;
55
54
56
- ``` typescript
57
- import { AutoInjectable } from ' @nestjs/auto-injectable' ;
58
-
59
- @AutoInjectable ()
60
- export class CatService {
61
- // ...
62
- }
63
- ```
55
+ @AutoInjectable ()
56
+ export class CatService {
57
+ // ...
58
+ }
59
+ ```
64
60
65
- In this case, by applying the @AutoInjectable () decorator to the CatService class, the class has become injectable, allowing it to be injected into other modules without the need for module definitions.
61
+ In this case, by applying the ` @AutoInjectable() ` decorator to the CatService class, the class has become injectable,
62
+ allowing it to be injected into other modules without the need for module definitions.
66
63
67
- ** 3. Inject**
64
+ ** 3. ` @AutoController() ` and dependency injection**
65
+
66
+ ``` ts
67
+ import { AutoController } from ' @tiny-nestjs/auto-injectable' ;
68
+
69
+ @AutoController ()
70
+ export class CatController {
71
+ constructor (private readonly catService : CatService ) {
72
+ }
73
+
74
+ @Get (' cats' )
75
+ getCats() {
76
+ return this .catService .findAll ();
77
+ }
78
+ }
79
+ ```
68
80
69
- ``` typescript
70
- @Controller ()
71
- export class AppController {
72
- constructor (private readonly catService : CatService ) {}
73
-
74
- @Get (' cats' )
75
- getCats() {
76
- return this .catService .findAll ();
77
- }
78
- }
79
- ```
81
+ The class with the ` @AutoInjectable() ` decorator has been successfully injected and ` /cats ` api can be accessed by
82
+ applying ` @AutoController() ` on ` CatController ` service.
80
83
81
- The class with the @AutoInjectable () decorator has been successfully injected.
84
+ | You can see actual [ project example] ( https://github.com/tiny-nestjs/auto-injectable-example ) here. |
85
+ | ----------------------------------------------------------------------------------------------------|
82
86
83
87
## Contribution
84
88
85
- To contribute to this library, fork the GitHub repository, make your changes, and create a pull request. Your
89
+ To contribute to this library, fork the [ GitHub repository] ( https://github.com/tiny-nestjs/auto-injectable ) , make your
90
+ changes, and create a pull request. Your
86
91
contributions are highly appreciated. If you find any improvements or bugs, please open an issue.
87
92
88
93
## License
89
94
90
- ` @tiny-nestjs/auto-injectable ` is distributed under the MIT license.
95
+ ` @tiny-nestjs/auto-injectable ` is distributed under
96
+ the [ MIT license] ( https://github.com/tiny-nestjs/auto-injectable/blob/main/LICENSE ) .
0 commit comments