@lytical/app 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
a typescript api server library built for your express project, with dependency injection support and auto router registration
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## features
|
|
6
6
|
|
|
7
7
|
- router handler dependency injection
|
|
8
8
|
- auto `app.use()` router registration
|
|
9
9
|
- use middleware, only for routes that require it
|
|
10
10
|
|
|
11
|
-
##
|
|
11
|
+
## getting started
|
|
12
12
|
|
|
13
13
|
install packages:
|
|
14
14
|
|
|
@@ -74,7 +74,7 @@ for the above project structure:
|
|
|
74
74
|
|
|
75
75
|
a simple project template / example can be found in github (https://github.com/lytical/ts-app-example)
|
|
76
76
|
|
|
77
|
-
##
|
|
77
|
+
## usage
|
|
78
78
|
|
|
79
79
|
create your injectable service class(es) to implement the business logic.
|
|
80
80
|
|
|
@@ -230,10 +230,10 @@ app.once(app_evt.server_started, () => {
|
|
|
230
230
|
app.start();
|
|
231
231
|
```
|
|
232
232
|
|
|
233
|
-
##
|
|
233
|
+
## documentation
|
|
234
234
|
|
|
235
235
|
todo: working on this right now...
|
|
236
236
|
|
|
237
|
-
|
|
237
|
+
stay tuned! i have more packages to come.`
|
|
238
238
|
|
|
239
239
|
_lytical(r) is a registered trademark of lytical, inc. all rights are reserved._
|
package/package.json
CHANGED