ultimate-express 1.0.8 → 1.0.9
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 +2 -1
- package/package.json +1 -1
- package/src/application.js +24 -24
- package/src/middlewares.js +1 -1
- package/src/response.js +1 -1
- /package/src/{workers/fs.js → worker.js} +0 -0
package/README.md
CHANGED
|
@@ -93,7 +93,7 @@ Optimized routes can be up to 10 times faster than normal routes, as they're usi
|
|
|
93
93
|
|
|
94
94
|
3. Do not set `body methods` to read body of requests with GET method or other methods that don't need a body. Reading body makes server about 10k req/sec slower.
|
|
95
95
|
|
|
96
|
-
4. By default, µExpress creates 1
|
|
96
|
+
4. By default, µExpress creates 1 (or 0 if your CPU has only 1 core) child thread to improve performance of reading files and computing hashes for etag. You can change this number by setting `threads` to a different number in `express()`, or set to 0 to disable thread pool (`express({ threads: 0 })`). Threads are shared between all express() instances, with largest `threads` number being used. Using more threads will not necessarily improve performance. Sometimes not using threads at all is faster, please [test](https://github.com/wg/wrk/) both options.
|
|
97
97
|
|
|
98
98
|
## Compatibility
|
|
99
99
|
|
|
@@ -110,6 +110,7 @@ In general, basically all features and options are supported. Use [Express 4.x d
|
|
|
110
110
|
- ✅ express.json()
|
|
111
111
|
- ✅ express.urlencoded()
|
|
112
112
|
- ✅ express.static()
|
|
113
|
+
- - Additionally you can pass `options.ifModifiedSince` to support If-Modified-Since header (this header is not supported in normal Express, but is supported in µExpress)
|
|
113
114
|
- ✅ express.text()
|
|
114
115
|
- ✅ express.raw()
|
|
115
116
|
- 🚧 express.request (this is not a constructor but a prototype for replacing methods)
|
package/package.json
CHANGED
package/src/application.js
CHANGED
|
@@ -10,25 +10,25 @@ const { Worker } = require("worker_threads");
|
|
|
10
10
|
|
|
11
11
|
const cpuCount = os.cpus().length;
|
|
12
12
|
|
|
13
|
-
let
|
|
14
|
-
let
|
|
15
|
-
const
|
|
13
|
+
let workers = [];
|
|
14
|
+
let taskKey = 0;
|
|
15
|
+
const workerTasks = {};
|
|
16
16
|
|
|
17
|
-
function
|
|
18
|
-
const
|
|
19
|
-
|
|
17
|
+
function createWorker() {
|
|
18
|
+
const worker = new Worker(path.join(__dirname, 'worker.js'));
|
|
19
|
+
workers.push(worker);
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
worker.on('message', (message) => {
|
|
22
22
|
if(message.err) {
|
|
23
|
-
|
|
23
|
+
workerTasks[message.key].reject(new Error(message.err));
|
|
24
24
|
} else {
|
|
25
|
-
|
|
25
|
+
workerTasks[message.key].resolve(message.data);
|
|
26
26
|
}
|
|
27
|
-
delete
|
|
27
|
+
delete workerTasks[message.key];
|
|
28
28
|
});
|
|
29
|
-
|
|
29
|
+
worker.unref();
|
|
30
30
|
|
|
31
|
-
return
|
|
31
|
+
return worker;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
class Application extends Router {
|
|
@@ -37,8 +37,8 @@ class Application extends Router {
|
|
|
37
37
|
if(!settings?.uwsOptions) {
|
|
38
38
|
settings.uwsOptions = {};
|
|
39
39
|
}
|
|
40
|
-
if(typeof settings.
|
|
41
|
-
settings.
|
|
40
|
+
if(typeof settings.threads !== 'number') {
|
|
41
|
+
settings.threads = cpuCount > 1 ? 1 : 0;
|
|
42
42
|
}
|
|
43
43
|
if(settings.uwsOptions.key_file_name && settings.uwsOptions.cert_file_name) {
|
|
44
44
|
this.uwsApp = uWS.SSLApp(settings.uwsOptions);
|
|
@@ -53,12 +53,12 @@ class Application extends Router {
|
|
|
53
53
|
settings: this.settings
|
|
54
54
|
};
|
|
55
55
|
this.listenCalled = false;
|
|
56
|
-
this.
|
|
57
|
-
for(let i = 0; i < settings.
|
|
58
|
-
if(
|
|
59
|
-
this.
|
|
56
|
+
this.workers = [];
|
|
57
|
+
for(let i = 0; i < settings.threads; i++) {
|
|
58
|
+
if(workers[i]) {
|
|
59
|
+
this.workers[i] = workers[i];
|
|
60
60
|
} else {
|
|
61
|
-
this.
|
|
61
|
+
this.workers[i] = createWorker();
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
this.port = undefined;
|
|
@@ -77,12 +77,12 @@ class Application extends Router {
|
|
|
77
77
|
|
|
78
78
|
readFileWithWorker(path) {
|
|
79
79
|
return new Promise((resolve, reject) => {
|
|
80
|
-
const
|
|
81
|
-
const key =
|
|
82
|
-
|
|
83
|
-
|
|
80
|
+
const worker = this.workers[Math.floor(Math.random() * this.workers.length)];
|
|
81
|
+
const key = taskKey++;
|
|
82
|
+
worker.postMessage({ key, type: 'readFile', path });
|
|
83
|
+
workerTasks[key] = { resolve, reject };
|
|
84
84
|
if(key > 1000000) {
|
|
85
|
-
|
|
85
|
+
taskKey = 0;
|
|
86
86
|
}
|
|
87
87
|
});
|
|
88
88
|
}
|
package/src/middlewares.js
CHANGED
|
@@ -20,7 +20,7 @@ function static(root, options) {
|
|
|
20
20
|
|
|
21
21
|
return (req, res, next) => {
|
|
22
22
|
const iq = req.url.indexOf('?');
|
|
23
|
-
let url = iq !== -1 ? req.url.substring(0, iq) : req.url;
|
|
23
|
+
let url = decodeURIComponent(iq !== -1 ? req.url.substring(0, iq) : req.url);
|
|
24
24
|
let _path = url;
|
|
25
25
|
let fullpath = path.resolve(path.join(options.root, url));
|
|
26
26
|
if(options.root && !fullpath.startsWith(path.resolve(options.root))) {
|
package/src/response.js
CHANGED
|
@@ -379,7 +379,7 @@ module.exports = class Response extends Writable {
|
|
|
379
379
|
}
|
|
380
380
|
|
|
381
381
|
// serve smaller files using workers
|
|
382
|
-
if(this.app.
|
|
382
|
+
if(this.app.workers.length && stat.size < 1024 * 1024 && !ranged) {
|
|
383
383
|
this.app.readFileWithWorker(fullpath).then((data) => {
|
|
384
384
|
if(this._res.aborted) {
|
|
385
385
|
return;
|
|
File without changes
|