routup 0.9.0 → 0.10.0
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 +3 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ npm install routup --save
|
|
|
41
41
|
|
|
42
42
|
## Documentation
|
|
43
43
|
|
|
44
|
-
To read the docs, visit [https://routup.
|
|
44
|
+
To read the docs, visit [https://routup.net](https://routup.net)
|
|
45
45
|
|
|
46
46
|
## Usage
|
|
47
47
|
|
|
@@ -67,7 +67,9 @@ typically http framework functions, which are not integrated in the main package
|
|
|
67
67
|
| [body](https://www.npmjs.com/package/@routup/body) | Read and parse the request body. |
|
|
68
68
|
| [cookie](https://www.npmjs.com/package/@routup/cookie) | Read and parse request cookies and serialize cookies for the response. |
|
|
69
69
|
| [decorators](https://www.npmjs.com/package/@routup/decorators) | Create request handlers with class-, method- & parameter-decorators. |
|
|
70
|
+
| [prometheus](https://www.npmjs.com/package/@routup/prometheus) | Collect and serve metrics for prometheus. |
|
|
70
71
|
| [query](https://www.npmjs.com/package/@routup/query) | Read and parse the query string of the request url. |
|
|
72
|
+
| [rate-limit](https://www.npmjs.com/package/@routup/rate-limit) | Rate limit incoming requests. |
|
|
71
73
|
| [static](https://www.npmjs.com/package/@routup/static) | Serve static files from a directory. |
|
|
72
74
|
| [swagger](https://www.npmjs.com/package/@routup/swagger) | Serve generated docs from URL or based on a JSON file. |
|
|
73
75
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "routup",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Routup is a minimalistic http based routing framework.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"homepage": "https://github.com/Tada5hi/routup#readme",
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@ebec/http": "^0.1.0",
|
|
43
|
-
"@routup/core": "^0.
|
|
43
|
+
"@routup/core": "^0.4.0",
|
|
44
44
|
"path-to-regexp": "^6.2.1",
|
|
45
45
|
"smob": "^0.0.6"
|
|
46
46
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"@types/supertest": "^2.0.12",
|
|
49
49
|
"supertest": "^6.3.3"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "f4e5ac3f6604b4281cc6e4557a862bfcfe25f5b6"
|
|
52
52
|
}
|