@webpieces/http-server 0.2.5 → 0.2.6
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 +8 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,6 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
Part of the [WebPieces TypeScript](https://github.com/deanhiller/webpieces-ts) framework.
|
|
6
6
|
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- 🎯 Built on Express.js with enhanced capabilities
|
|
10
|
+
- 🔗 Filter chain architecture for request/response processing
|
|
11
|
+
- 💉 Integrated dependency injection with InversifyJS
|
|
12
|
+
- 🚀 Request-scoped context management
|
|
13
|
+
- ✨ Type-safe routing and middleware
|
|
14
|
+
|
|
7
15
|
## Installation
|
|
8
16
|
|
|
9
17
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@webpieces/http-server",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "WebPieces server with filter chain and dependency injection",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/index.js",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"access": "public"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@webpieces/core-meta": "0.2.
|
|
26
|
-
"@webpieces/http-routing": "0.2.
|
|
27
|
-
"@webpieces/http-filters": "0.2.
|
|
25
|
+
"@webpieces/core-meta": "0.2.6",
|
|
26
|
+
"@webpieces/http-routing": "0.2.6",
|
|
27
|
+
"@webpieces/http-filters": "0.2.6"
|
|
28
28
|
}
|
|
29
29
|
}
|