@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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. 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
- ## Features
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
- ## Getting Started
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
- ## Usage
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
- ## Documentation
233
+ ## documentation
234
234
 
235
235
  todo: working on this right now...
236
236
 
237
- Stay tuned! I have more packages to come.`
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lytical/app",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "a typescript api server library built for your express project, with dependency injection support and auto router registration",
5
5
  "main": "index.js",
6
6
  "private": false,