routup 0.1.0 → 0.1.1
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 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,10 +62,11 @@ router.listen(3000);
|
|
|
62
62
|
According to the fact that routup is a minimalistic framework, it depends on plugins to cover some
|
|
63
63
|
typically http framework functions, which are not integrated in the main package.
|
|
64
64
|
|
|
65
|
-
| Name | Description
|
|
66
|
-
|
|
67
|
-
| [
|
|
68
|
-
| [
|
|
65
|
+
| Name | Description |
|
|
66
|
+
|-----------------------------------------------------------------------------|------------------------------------------------------------------------|
|
|
67
|
+
| [body](https://www.npmjs.com/package/@routup/tree/master/packages/body) | Read and parse the request body. |
|
|
68
|
+
| [cookie](https://www.npmjs.com/package/@routup/tree/master/packages/cookie) | Read and parse request cookies and serialize cookies for the response. |
|
|
69
|
+
| [query](https://www.npmjs.com/package/@routup/tree/master/packages/query) | Read and parse the query string of the request url. |
|
|
69
70
|
|
|
70
71
|
|
|
71
72
|
## License
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "routup",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Routup is a minimalistic http based routing framework.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"typings": "dist/index.d.ts",
|
|
@@ -53,5 +53,5 @@
|
|
|
53
53
|
"path-to-regexp": "^6.2.1",
|
|
54
54
|
"smob": "^0.0.6"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "b0c55a29be09b483fad27962505c040602c92a0e"
|
|
57
57
|
}
|