ultimate-express 1.3.14 → 1.3.15
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/EXPRESS_LICENSE +25 -25
- package/LICENSE +201 -201
- package/README.md +320 -320
- package/package.json +97 -97
- package/src/application.js +322 -322
- package/src/declarative.js +427 -427
- package/src/index.js +54 -54
- package/src/middlewares.js +337 -337
- package/src/request.js +404 -404
- package/src/response.js +788 -790
- package/src/router.js +618 -618
- package/src/types.d.ts +49 -49
- package/src/utils.js +371 -371
- package/src/view.js +126 -126
- package/src/worker.js +30 -30
package/package.json
CHANGED
|
@@ -1,97 +1,97 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ultimate-express",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "The Ultimate Express. Fastest http server with full Express compatibility, based on uWebSockets.",
|
|
5
|
-
"main": "src/index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"test": "node tests/index.js",
|
|
8
|
-
"dev": "node --inspect=9229 demo/index.js"
|
|
9
|
-
},
|
|
10
|
-
"engines": {
|
|
11
|
-
"node": ">=18"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"src",
|
|
15
|
-
"EXPRESS_LICENSE"
|
|
16
|
-
],
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/dimdenGD/ultimate-express.git"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"express",
|
|
23
|
-
"http",
|
|
24
|
-
"fast",
|
|
25
|
-
"server",
|
|
26
|
-
"http server",
|
|
27
|
-
"https",
|
|
28
|
-
"https server",
|
|
29
|
-
"ws",
|
|
30
|
-
"websocket",
|
|
31
|
-
"websockets",
|
|
32
|
-
"uwebsockets",
|
|
33
|
-
"uws"
|
|
34
|
-
],
|
|
35
|
-
"types": "src/types.d.ts",
|
|
36
|
-
"author": "dimden.dev",
|
|
37
|
-
"license": "Apache-2.0",
|
|
38
|
-
"bugs": {
|
|
39
|
-
"url": "https://github.com/dimdenGD/ultimate-express/issues"
|
|
40
|
-
},
|
|
41
|
-
"homepage": "https://github.com/dimdenGD/ultimate-express#readme",
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"@types/express": "^4.0.0",
|
|
44
|
-
"accepts": "^1.3.8",
|
|
45
|
-
"acorn": "^8.12.1",
|
|
46
|
-
"bytes": "^3.1.2",
|
|
47
|
-
"cookie": "^1.0.1",
|
|
48
|
-
"cookie-signature": "^1.2.1",
|
|
49
|
-
"encodeurl": "^2.0.0",
|
|
50
|
-
"etag": "^1.8.1",
|
|
51
|
-
"fast-querystring": "^1.1.2",
|
|
52
|
-
"fast-zlib": "^2.0.1",
|
|
53
|
-
"fresh": "^0.5.2",
|
|
54
|
-
"mime-types": "^2.1.35",
|
|
55
|
-
"ms": "^2.1.3",
|
|
56
|
-
"proxy-addr": "^2.0.7",
|
|
57
|
-
"qs": "^6.13.0",
|
|
58
|
-
"range-parser": "^1.2.1",
|
|
59
|
-
"statuses": "^2.0.1",
|
|
60
|
-
"tseep": "^1.2.2",
|
|
61
|
-
"type-is": "^1.6.18",
|
|
62
|
-
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.49.0",
|
|
63
|
-
"vary": "^1.1.2"
|
|
64
|
-
},
|
|
65
|
-
"devDependencies": {
|
|
66
|
-
"@codechecks/client": "^0.1.12",
|
|
67
|
-
"body-parser": "^1.20.3",
|
|
68
|
-
"compression": "^1.7.4",
|
|
69
|
-
"cookie-parser": "^1.4.6",
|
|
70
|
-
"cookie-session": "^2.1.0",
|
|
71
|
-
"cors": "^2.8.5",
|
|
72
|
-
"ejs": "^3.1.10",
|
|
73
|
-
"errorhandler": "^1.5.1",
|
|
74
|
-
"exit-hook": "^2.2.1",
|
|
75
|
-
"express": "^4.19.2",
|
|
76
|
-
"express-art-template": "^1.0.1",
|
|
77
|
-
"express-async-errors": "^3.1.1",
|
|
78
|
-
"express-dot-engine": "^1.0.8",
|
|
79
|
-
"express-fileupload": "^1.5.1",
|
|
80
|
-
"express-handlebars": "^8.0.1",
|
|
81
|
-
"express-rate-limit": "^7.4.0",
|
|
82
|
-
"express-session": "^1.18.0",
|
|
83
|
-
"express-subdomain": "^1.0.6",
|
|
84
|
-
"formdata-node": "^6.0.3",
|
|
85
|
-
"method-override": "^3.0.0",
|
|
86
|
-
"multer": "^1.4.5-lts.1",
|
|
87
|
-
"mustache-express": "^1.3.2",
|
|
88
|
-
"pako": "^2.1.0",
|
|
89
|
-
"pkg-pr-new": "^0.0.29",
|
|
90
|
-
"pug": "^3.0.3",
|
|
91
|
-
"response-time": "^2.3.2",
|
|
92
|
-
"serve-index": "^1.9.1",
|
|
93
|
-
"serve-static": "^1.16.2",
|
|
94
|
-
"swig": "^1.4.2",
|
|
95
|
-
"vhost": "^3.0.2"
|
|
96
|
-
}
|
|
97
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ultimate-express",
|
|
3
|
+
"version": "1.3.15",
|
|
4
|
+
"description": "The Ultimate Express. Fastest http server with full Express compatibility, based on uWebSockets.",
|
|
5
|
+
"main": "src/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "node tests/index.js",
|
|
8
|
+
"dev": "node --inspect=9229 demo/index.js"
|
|
9
|
+
},
|
|
10
|
+
"engines": {
|
|
11
|
+
"node": ">=18"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"src",
|
|
15
|
+
"EXPRESS_LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/dimdenGD/ultimate-express.git"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"express",
|
|
23
|
+
"http",
|
|
24
|
+
"fast",
|
|
25
|
+
"server",
|
|
26
|
+
"http server",
|
|
27
|
+
"https",
|
|
28
|
+
"https server",
|
|
29
|
+
"ws",
|
|
30
|
+
"websocket",
|
|
31
|
+
"websockets",
|
|
32
|
+
"uwebsockets",
|
|
33
|
+
"uws"
|
|
34
|
+
],
|
|
35
|
+
"types": "src/types.d.ts",
|
|
36
|
+
"author": "dimden.dev",
|
|
37
|
+
"license": "Apache-2.0",
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/dimdenGD/ultimate-express/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/dimdenGD/ultimate-express#readme",
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@types/express": "^4.0.0",
|
|
44
|
+
"accepts": "^1.3.8",
|
|
45
|
+
"acorn": "^8.12.1",
|
|
46
|
+
"bytes": "^3.1.2",
|
|
47
|
+
"cookie": "^1.0.1",
|
|
48
|
+
"cookie-signature": "^1.2.1",
|
|
49
|
+
"encodeurl": "^2.0.0",
|
|
50
|
+
"etag": "^1.8.1",
|
|
51
|
+
"fast-querystring": "^1.1.2",
|
|
52
|
+
"fast-zlib": "^2.0.1",
|
|
53
|
+
"fresh": "^0.5.2",
|
|
54
|
+
"mime-types": "^2.1.35",
|
|
55
|
+
"ms": "^2.1.3",
|
|
56
|
+
"proxy-addr": "^2.0.7",
|
|
57
|
+
"qs": "^6.13.0",
|
|
58
|
+
"range-parser": "^1.2.1",
|
|
59
|
+
"statuses": "^2.0.1",
|
|
60
|
+
"tseep": "^1.2.2",
|
|
61
|
+
"type-is": "^1.6.18",
|
|
62
|
+
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.49.0",
|
|
63
|
+
"vary": "^1.1.2"
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@codechecks/client": "^0.1.12",
|
|
67
|
+
"body-parser": "^1.20.3",
|
|
68
|
+
"compression": "^1.7.4",
|
|
69
|
+
"cookie-parser": "^1.4.6",
|
|
70
|
+
"cookie-session": "^2.1.0",
|
|
71
|
+
"cors": "^2.8.5",
|
|
72
|
+
"ejs": "^3.1.10",
|
|
73
|
+
"errorhandler": "^1.5.1",
|
|
74
|
+
"exit-hook": "^2.2.1",
|
|
75
|
+
"express": "^4.19.2",
|
|
76
|
+
"express-art-template": "^1.0.1",
|
|
77
|
+
"express-async-errors": "^3.1.1",
|
|
78
|
+
"express-dot-engine": "^1.0.8",
|
|
79
|
+
"express-fileupload": "^1.5.1",
|
|
80
|
+
"express-handlebars": "^8.0.1",
|
|
81
|
+
"express-rate-limit": "^7.4.0",
|
|
82
|
+
"express-session": "^1.18.0",
|
|
83
|
+
"express-subdomain": "^1.0.6",
|
|
84
|
+
"formdata-node": "^6.0.3",
|
|
85
|
+
"method-override": "^3.0.0",
|
|
86
|
+
"multer": "^1.4.5-lts.1",
|
|
87
|
+
"mustache-express": "^1.3.2",
|
|
88
|
+
"pako": "^2.1.0",
|
|
89
|
+
"pkg-pr-new": "^0.0.29",
|
|
90
|
+
"pug": "^3.0.3",
|
|
91
|
+
"response-time": "^2.3.2",
|
|
92
|
+
"serve-index": "^1.9.1",
|
|
93
|
+
"serve-static": "^1.16.2",
|
|
94
|
+
"swig": "^1.4.2",
|
|
95
|
+
"vhost": "^3.0.2"
|
|
96
|
+
}
|
|
97
|
+
}
|