@heliosjs/middlewares 9.0.6 → 9.0.7
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 +23 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# HeliosJS
|
|
2
|
+
|
|
3
|
+
🎯 A modern decorator-based Node.js framework for building scalable applications.
|
|
4
|
+
|
|
5
|
+
## Documentation
|
|
6
|
+
|
|
7
|
+
👉 **[Full Documentation](https://naumovoleg.github.io/helios/)**
|
|
8
|
+
|
|
9
|
+
## Packages
|
|
10
|
+
|
|
11
|
+
| Package | Version | Description |
|
|
12
|
+
| ------------------------------------------------------------------------------------------- | ------- | ----------------------- |
|
|
13
|
+
| [@heliosjs/core](https://github.com/NaumovOleg/heliosjs/tree/master/src/core) | | Core decorators and DI |
|
|
14
|
+
| [@heliosjs/http](https://github.com/NaumovOleg/heliosjs/tree/master/src/http) | | HTTP server and routing |
|
|
15
|
+
| [@heliosjs/middlewares](https://github.com/NaumovOleg/heliosjs/tree/master/src/middlewares) | | Built-in middlewares |
|
|
16
|
+
| [@heliosjs/aws](https://github.com/NaumovOleg/heliosjs/tree/master/src/aws) | | Aws support |
|
|
17
|
+
| [@heliosjs/grpc](https://github.com/NaumovOleg/heliosjs/tree/master/src/grpc) | | Grpc support |
|
|
18
|
+
|
|
19
|
+
## Quick Start
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npm install @heliosjs/core @heliosjs/http reflect-metadata
|
|
23
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@heliosjs/middlewares",
|
|
3
|
-
"version": "9.0.
|
|
3
|
+
"version": "9.0.7",
|
|
4
4
|
"description": "Middlewares for @heliosjs",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"reflect-metadata": "^0.2.2"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@heliosjs/core": "^3.1.
|
|
32
|
+
"@heliosjs/core": "^3.1.8",
|
|
33
33
|
"typescript": ">=4.0.0",
|
|
34
34
|
"reflect-metadata": "^0.2.2",
|
|
35
35
|
"@types/node": "^25.5.0"
|