@types/node 22.15.33 → 22.17.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.
- node v22.17/README.md +15 -0
- {node v22.15 → node v22.17}/buffer.d.ts +5 -1
- {node v22.15 → node v22.17}/crypto.d.ts +17 -1
- {node v22.15 → node v22.17}/dns/promises.d.ts +11 -10
- {node v22.15 → node v22.17}/dns.d.ts +18 -19
- {node v22.15 → node v22.17}/events.d.ts +0 -1
- {node v22.15 → node v22.17}/fs/promises.d.ts +22 -11
- {node v22.15 → node v22.17}/fs.d.ts +41 -13
- {node v22.15 → node v22.17}/http.d.ts +63 -1
- {node v22.15 → node v22.17}/http2.d.ts +12 -1
- {node v22.15 → node v22.17}/inspector.d.ts +157 -4
- {node v22.15 → node v22.17}/module.d.ts +47 -14
- {node v22.15 → node v22.17}/package.json +3 -83
- {node v22.15 → node v22.17}/process.d.ts +0 -2
- {node v22.15 → node v22.17}/readline/promises.d.ts +0 -1
- {node v22.15 → node v22.17}/repl.d.ts +3 -5
- {node v22.15 → node v22.17}/sqlite.d.ts +172 -0
- {node v22.15 → node v22.17}/stream/web.d.ts +8 -0
- {node v22.15 → node v22.17}/stream.d.ts +0 -11
- node v22.17/test.d.ts +2183 -0
- {node v22.15 → node v22.17}/url.d.ts +1 -3
- {node v22.15 → node v22.17}/util.d.ts +19 -4
- {node v22.15 → node v22.17}/v8.d.ts +27 -30
- {node v22.15 → node v22.17}/worker_threads.d.ts +33 -17
- {node v22.15 → node v22.17}/zlib.d.ts +8 -2
- node v22.15/README.md +0 -15
- node v22.15/test.d.ts +0 -2278
- {node v22.15 → node v22.17}/LICENSE +0 -0
- {node v22.15 → node v22.17}/assert/strict.d.ts +0 -0
- {node v22.15 → node v22.17}/assert.d.ts +0 -0
- {node v22.15 → node v22.17}/async_hooks.d.ts +1 -1
- {node v22.15 → node v22.17}/buffer.buffer.d.ts +0 -0
- {node v22.15 → node v22.17}/child_process.d.ts +0 -0
- {node v22.15 → node v22.17}/cluster.d.ts +0 -0
- {node v22.15 → node v22.17}/compatibility/disposable.d.ts +0 -0
- {node v22.15 → node v22.17}/compatibility/index.d.ts +0 -0
- {node v22.15 → node v22.17}/compatibility/indexable.d.ts +0 -0
- {node v22.15 → node v22.17}/compatibility/iterators.d.ts +0 -0
- {node v22.15 → node v22.17}/console.d.ts +0 -0
- {node v22.15 → node v22.17}/constants.d.ts +0 -0
- {node v22.15 → node v22.17}/dgram.d.ts +0 -0
- {node v22.15 → node v22.17}/diagnostics_channel.d.ts +0 -0
- {node v22.15 → node v22.17}/dom-events.d.ts +0 -0
- {node v22.15 → node v22.17}/domain.d.ts +0 -0
- {node v22.15 → node v22.17}/globals.d.ts +0 -0
- {node v22.15 → node v22.17}/globals.typedarray.d.ts +0 -0
- {node v22.15 → node v22.17}/https.d.ts +0 -0
- {node v22.15 → node v22.17}/index.d.ts +0 -0
- {node v22.15 → node v22.17}/net.d.ts +0 -0
- {node v22.15 → node v22.17}/os.d.ts +0 -0
- {node v22.15 → node v22.17}/path.d.ts +0 -0
- {node v22.15 → node v22.17}/perf_hooks.d.ts +0 -0
- {node v22.15 → node v22.17}/punycode.d.ts +0 -0
- {node v22.15 → node v22.17}/querystring.d.ts +0 -0
- {node v22.15 → node v22.17}/readline.d.ts +0 -0
- {node v22.15 → node v22.17}/sea.d.ts +0 -0
- {node v22.15 → node v22.17}/stream/consumers.d.ts +0 -0
- {node v22.15 → node v22.17}/stream/promises.d.ts +0 -0
- {node v22.15 → node v22.17}/string_decoder.d.ts +0 -0
- {node v22.15 → node v22.17}/timers/promises.d.ts +0 -0
- {node v22.15 → node v22.17}/timers.d.ts +0 -0
- {node v22.15 → node v22.17}/tls.d.ts +0 -0
- {node v22.15 → node v22.17}/trace_events.d.ts +0 -0
- {node v22.15 → node v22.17}/ts5.6/buffer.buffer.d.ts +0 -0
- {node v22.15 → node v22.17}/ts5.6/globals.typedarray.d.ts +0 -0
- {node v22.15 → node v22.17}/ts5.6/index.d.ts +0 -0
- {node v22.15 → node v22.17}/tty.d.ts +0 -0
- {node v22.15 → node v22.17}/vm.d.ts +0 -0
- {node v22.15 → node v22.17}/wasi.d.ts +0 -0
|
@@ -420,14 +420,12 @@ declare module "url" {
|
|
|
420
420
|
* Threads, `Blob` objects registered within one Worker will not be available
|
|
421
421
|
* to other workers or the main thread.
|
|
422
422
|
* @since v16.7.0
|
|
423
|
-
* @experimental
|
|
424
423
|
*/
|
|
425
424
|
static createObjectURL(blob: NodeBlob): string;
|
|
426
425
|
/**
|
|
427
426
|
* Removes the stored `Blob` identified by the given ID. Attempting to revoke a
|
|
428
427
|
* ID that isn't registered will silently fail.
|
|
429
428
|
* @since v16.7.0
|
|
430
|
-
* @experimental
|
|
431
429
|
* @param id A `'blob:nodedata:...` URL string returned by a prior call to `URL.createObjectURL()`.
|
|
432
430
|
*/
|
|
433
431
|
static revokeObjectURL(id: string): void;
|
|
@@ -828,7 +826,7 @@ declare module "url" {
|
|
|
828
826
|
* Returns an ES6 `Iterator` over each of the name-value pairs in the query.
|
|
829
827
|
* Each item of the iterator is a JavaScript `Array`. The first item of the `Array` is the `name`, the second item of the `Array` is the `value`.
|
|
830
828
|
*
|
|
831
|
-
* Alias for `urlSearchParams[
|
|
829
|
+
* Alias for `urlSearchParams[Symbol.iterator]()`.
|
|
832
830
|
*/
|
|
833
831
|
entries(): URLSearchParamsIterator<[string, string]>;
|
|
834
832
|
/**
|
|
@@ -433,7 +433,6 @@ declare module "util" {
|
|
|
433
433
|
* });
|
|
434
434
|
* ```
|
|
435
435
|
* @since v19.7.0
|
|
436
|
-
* @experimental
|
|
437
436
|
* @param resource Any non-null object tied to the abortable operation and held weakly.
|
|
438
437
|
* If `resource` is garbage collected before the `signal` aborts, the promise remains pending,
|
|
439
438
|
* allowing Node.js to stop tracking it.
|
|
@@ -445,8 +444,8 @@ declare module "util" {
|
|
|
445
444
|
* intended for debugging. The output of `util.inspect` may change at any time
|
|
446
445
|
* and should not be depended upon programmatically. Additional `options` may be
|
|
447
446
|
* passed that alter the result.
|
|
448
|
-
* `util.inspect()` will use the constructor's name and/or
|
|
449
|
-
* an identifiable tag for an inspected value.
|
|
447
|
+
* `util.inspect()` will use the constructor's name and/or `Symbol.toStringTag`
|
|
448
|
+
* property to make an identifiable tag for an inspected value.
|
|
450
449
|
*
|
|
451
450
|
* ```js
|
|
452
451
|
* class Foo {
|
|
@@ -1462,6 +1461,7 @@ declare module "util" {
|
|
|
1462
1461
|
| "hidden"
|
|
1463
1462
|
| "inverse"
|
|
1464
1463
|
| "italic"
|
|
1464
|
+
| "none"
|
|
1465
1465
|
| "overlined"
|
|
1466
1466
|
| "reset"
|
|
1467
1467
|
| "strikethrough"
|
|
@@ -1481,7 +1481,7 @@ declare module "util" {
|
|
|
1481
1481
|
/**
|
|
1482
1482
|
* This function returns a formatted text considering the `format` passed
|
|
1483
1483
|
* for printing in a terminal. It is aware of the terminal's capabilities
|
|
1484
|
-
* and acts according to the configuration set via `
|
|
1484
|
+
* and acts according to the configuration set via `NO_COLOR`,
|
|
1485
1485
|
* `NODE_DISABLE_COLORS` and `FORCE_COLOR` environment variables.
|
|
1486
1486
|
*
|
|
1487
1487
|
* ```js
|
|
@@ -1518,6 +1518,8 @@ declare module "util" {
|
|
|
1518
1518
|
* );
|
|
1519
1519
|
* ```
|
|
1520
1520
|
*
|
|
1521
|
+
* The special format value `none` applies no additional styling to the text.
|
|
1522
|
+
*
|
|
1521
1523
|
* The full list of formats can be found in [modifiers](https://nodejs.org/docs/latest-v22.x/api/util.html#modifiers).
|
|
1522
1524
|
* @param format A text format or an Array of text formats defined in `util.inspect.colors`.
|
|
1523
1525
|
* @param text The text to to be formatted.
|
|
@@ -2226,6 +2228,19 @@ declare module "util/types" {
|
|
|
2226
2228
|
* @since v10.0.0
|
|
2227
2229
|
*/
|
|
2228
2230
|
function isExternal(object: unknown): boolean;
|
|
2231
|
+
/**
|
|
2232
|
+
* Returns `true` if the value is a built-in `Float16Array` instance.
|
|
2233
|
+
*
|
|
2234
|
+
* ```js
|
|
2235
|
+
* util.types.isFloat16Array(new ArrayBuffer()); // Returns false
|
|
2236
|
+
* util.types.isFloat16Array(new Float16Array()); // Returns true
|
|
2237
|
+
* util.types.isFloat16Array(new Float32Array()); // Returns false
|
|
2238
|
+
* ```
|
|
2239
|
+
* @since v22.16.0
|
|
2240
|
+
*/
|
|
2241
|
+
// This does NOT return a type predicate in v22.x.
|
|
2242
|
+
// The Float16Array feature does not yet exist in this version of Node.js.
|
|
2243
|
+
function isFloat16Array(object: unknown): boolean;
|
|
2229
2244
|
/**
|
|
2230
2245
|
* Returns `true` if the value is a built-in [`Float32Array`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array) instance.
|
|
2231
2246
|
*
|
|
@@ -581,7 +581,6 @@ declare module "v8" {
|
|
|
581
581
|
/**
|
|
582
582
|
* The API is a no-op if `--heapsnapshot-near-heap-limit` is already set from the command line or the API is called more than once.
|
|
583
583
|
* `limit` must be a positive integer. See [`--heapsnapshot-near-heap-limit`](https://nodejs.org/docs/latest-v22.x/api/cli.html#--heapsnapshot-near-heap-limitmax_count) for more information.
|
|
584
|
-
* @experimental
|
|
585
584
|
* @since v18.10.0, v16.18.0
|
|
586
585
|
*/
|
|
587
586
|
function setHeapSnapshotNearHeapLimit(limit: number): void;
|
|
@@ -807,33 +806,6 @@ declare module "v8" {
|
|
|
807
806
|
*/
|
|
808
807
|
const promiseHooks: PromiseHooks;
|
|
809
808
|
type StartupSnapshotCallbackFn = (args: any) => any;
|
|
810
|
-
interface StartupSnapshot {
|
|
811
|
-
/**
|
|
812
|
-
* Add a callback that will be called when the Node.js instance is about to get serialized into a snapshot and exit.
|
|
813
|
-
* This can be used to release resources that should not or cannot be serialized or to convert user data into a form more suitable for serialization.
|
|
814
|
-
* @since v18.6.0, v16.17.0
|
|
815
|
-
*/
|
|
816
|
-
addSerializeCallback(callback: StartupSnapshotCallbackFn, data?: any): void;
|
|
817
|
-
/**
|
|
818
|
-
* Add a callback that will be called when the Node.js instance is deserialized from a snapshot.
|
|
819
|
-
* The `callback` and the `data` (if provided) will be serialized into the snapshot, they can be used to re-initialize the state of the application or
|
|
820
|
-
* to re-acquire resources that the application needs when the application is restarted from the snapshot.
|
|
821
|
-
* @since v18.6.0, v16.17.0
|
|
822
|
-
*/
|
|
823
|
-
addDeserializeCallback(callback: StartupSnapshotCallbackFn, data?: any): void;
|
|
824
|
-
/**
|
|
825
|
-
* This sets the entry point of the Node.js application when it is deserialized from a snapshot. This can be called only once in the snapshot building script.
|
|
826
|
-
* If called, the deserialized application no longer needs an additional entry point script to start up and will simply invoke the callback along with the deserialized
|
|
827
|
-
* data (if provided), otherwise an entry point script still needs to be provided to the deserialized application.
|
|
828
|
-
* @since v18.6.0, v16.17.0
|
|
829
|
-
*/
|
|
830
|
-
setDeserializeMainFunction(callback: StartupSnapshotCallbackFn, data?: any): void;
|
|
831
|
-
/**
|
|
832
|
-
* Returns true if the Node.js instance is run to build a snapshot.
|
|
833
|
-
* @since v18.6.0, v16.17.0
|
|
834
|
-
*/
|
|
835
|
-
isBuildingSnapshot(): boolean;
|
|
836
|
-
}
|
|
837
809
|
/**
|
|
838
810
|
* The `v8.startupSnapshot` interface can be used to add serialization and deserialization hooks for custom startup snapshots.
|
|
839
811
|
*
|
|
@@ -912,10 +884,35 @@ declare module "v8" {
|
|
|
912
884
|
*
|
|
913
885
|
* Currently the application deserialized from a user-land snapshot cannot be snapshotted again, so these APIs are only available to applications that are not deserialized from a user-land snapshot.
|
|
914
886
|
*
|
|
915
|
-
* @experimental
|
|
916
887
|
* @since v18.6.0, v16.17.0
|
|
917
888
|
*/
|
|
918
|
-
|
|
889
|
+
namespace startupSnapshot {
|
|
890
|
+
/**
|
|
891
|
+
* Add a callback that will be called when the Node.js instance is about to get serialized into a snapshot and exit.
|
|
892
|
+
* This can be used to release resources that should not or cannot be serialized or to convert user data into a form more suitable for serialization.
|
|
893
|
+
* @since v18.6.0, v16.17.0
|
|
894
|
+
*/
|
|
895
|
+
function addSerializeCallback(callback: StartupSnapshotCallbackFn, data?: any): void;
|
|
896
|
+
/**
|
|
897
|
+
* Add a callback that will be called when the Node.js instance is deserialized from a snapshot.
|
|
898
|
+
* The `callback` and the `data` (if provided) will be serialized into the snapshot, they can be used to re-initialize the state of the application or
|
|
899
|
+
* to re-acquire resources that the application needs when the application is restarted from the snapshot.
|
|
900
|
+
* @since v18.6.0, v16.17.0
|
|
901
|
+
*/
|
|
902
|
+
function addDeserializeCallback(callback: StartupSnapshotCallbackFn, data?: any): void;
|
|
903
|
+
/**
|
|
904
|
+
* This sets the entry point of the Node.js application when it is deserialized from a snapshot. This can be called only once in the snapshot building script.
|
|
905
|
+
* If called, the deserialized application no longer needs an additional entry point script to start up and will simply invoke the callback along with the deserialized
|
|
906
|
+
* data (if provided), otherwise an entry point script still needs to be provided to the deserialized application.
|
|
907
|
+
* @since v18.6.0, v16.17.0
|
|
908
|
+
*/
|
|
909
|
+
function setDeserializeMainFunction(callback: StartupSnapshotCallbackFn, data?: any): void;
|
|
910
|
+
/**
|
|
911
|
+
* Returns true if the Node.js instance is run to build a snapshot.
|
|
912
|
+
* @since v18.6.0, v16.17.0
|
|
913
|
+
*/
|
|
914
|
+
function isBuildingSnapshot(): boolean;
|
|
915
|
+
}
|
|
919
916
|
}
|
|
920
917
|
declare module "node:v8" {
|
|
921
918
|
export * from "v8";
|
|
@@ -15,28 +15,31 @@
|
|
|
15
15
|
*
|
|
16
16
|
* ```js
|
|
17
17
|
* import {
|
|
18
|
-
* Worker,
|
|
18
|
+
* Worker,
|
|
19
|
+
* isMainThread,
|
|
20
|
+
* parentPort,
|
|
21
|
+
* workerData,
|
|
19
22
|
* } from 'node:worker_threads';
|
|
20
|
-
* import { parse } from 'some-js-parsing-library';
|
|
21
23
|
*
|
|
22
|
-
* if (isMainThread) {
|
|
23
|
-
*
|
|
24
|
-
* return new Promise((resolve, reject) => {
|
|
25
|
-
* const worker = new Worker(__filename, {
|
|
26
|
-
* workerData: script,
|
|
27
|
-
* });
|
|
28
|
-
* worker.on('message', resolve);
|
|
29
|
-
* worker.on('error', reject);
|
|
30
|
-
* worker.on('exit', (code) => {
|
|
31
|
-
* if (code !== 0)
|
|
32
|
-
* reject(new Error(`Worker stopped with exit code ${code}`));
|
|
33
|
-
* });
|
|
34
|
-
* });
|
|
35
|
-
* };
|
|
36
|
-
* } else {
|
|
24
|
+
* if (!isMainThread) {
|
|
25
|
+
* const { parse } = await import('some-js-parsing-library');
|
|
37
26
|
* const script = workerData;
|
|
38
27
|
* parentPort.postMessage(parse(script));
|
|
39
28
|
* }
|
|
29
|
+
*
|
|
30
|
+
* export default function parseJSAsync(script) {
|
|
31
|
+
* return new Promise((resolve, reject) => {
|
|
32
|
+
* const worker = new Worker(new URL(import.meta.url), {
|
|
33
|
+
* workerData: script,
|
|
34
|
+
* });
|
|
35
|
+
* worker.on('message', resolve);
|
|
36
|
+
* worker.on('error', reject);
|
|
37
|
+
* worker.on('exit', (code) => {
|
|
38
|
+
* if (code !== 0)
|
|
39
|
+
* reject(new Error(`Worker stopped with exit code ${code}`));
|
|
40
|
+
* });
|
|
41
|
+
* });
|
|
42
|
+
* };
|
|
40
43
|
* ```
|
|
41
44
|
*
|
|
42
45
|
* The above example spawns a Worker thread for each `parseJSAsync()` call. In
|
|
@@ -59,6 +62,7 @@ declare module "worker_threads" {
|
|
|
59
62
|
import { Readable, Writable } from "node:stream";
|
|
60
63
|
import { ReadableStream, TransformStream, WritableStream } from "node:stream/web";
|
|
61
64
|
import { URL } from "node:url";
|
|
65
|
+
import { HeapInfo } from "node:v8";
|
|
62
66
|
const isInternalThread: boolean;
|
|
63
67
|
const isMainThread: boolean;
|
|
64
68
|
const parentPort: null | MessagePort;
|
|
@@ -183,6 +187,11 @@ declare module "worker_threads" {
|
|
|
183
187
|
* @since v10.5.0
|
|
184
188
|
*/
|
|
185
189
|
postMessage(value: any, transferList?: readonly Transferable[]): void;
|
|
190
|
+
/**
|
|
191
|
+
* If true, the `MessagePort` object will keep the Node.js event loop active.
|
|
192
|
+
* @since v18.1.0, v16.17.0
|
|
193
|
+
*/
|
|
194
|
+
hasRef(): boolean;
|
|
186
195
|
/**
|
|
187
196
|
* Opposite of `unref()`. Calling `ref()` on a previously `unref()`ed port does _not_ let the program exit if it's the only active handle left (the default
|
|
188
197
|
* behavior). If the port is `ref()`ed, calling `ref()` again has no effect.
|
|
@@ -465,6 +474,13 @@ declare module "worker_threads" {
|
|
|
465
474
|
* @return A promise for a Readable Stream containing a V8 heap snapshot
|
|
466
475
|
*/
|
|
467
476
|
getHeapSnapshot(): Promise<Readable>;
|
|
477
|
+
/**
|
|
478
|
+
* This method returns a `Promise` that will resolve to an object identical to `v8.getHeapStatistics()`,
|
|
479
|
+
* or reject with an `ERR_WORKER_NOT_RUNNING` error if the worker is no longer running.
|
|
480
|
+
* This methods allows the statistics to be observed from outside the actual thread.
|
|
481
|
+
* @since v22.16.0
|
|
482
|
+
*/
|
|
483
|
+
getHeapStatistics(): Promise<HeapInfo>;
|
|
468
484
|
addListener(event: "error", listener: (err: Error) => void): this;
|
|
469
485
|
addListener(event: "exit", listener: (exitCode: number) => void): this;
|
|
470
486
|
addListener(event: "message", listener: (value: any) => void): this;
|
|
@@ -147,6 +147,10 @@ declare module "zlib" {
|
|
|
147
147
|
* @default buffer.kMaxLength
|
|
148
148
|
*/
|
|
149
149
|
maxOutputLength?: number | undefined;
|
|
150
|
+
/**
|
|
151
|
+
* If `true`, returns an object with `buffer` and `engine`.
|
|
152
|
+
*/
|
|
153
|
+
info?: boolean | undefined;
|
|
150
154
|
}
|
|
151
155
|
interface ZstdOptions {
|
|
152
156
|
/**
|
|
@@ -172,6 +176,10 @@ declare module "zlib" {
|
|
|
172
176
|
* @default buffer.kMaxLength
|
|
173
177
|
*/
|
|
174
178
|
maxOutputLength?: number | undefined;
|
|
179
|
+
/**
|
|
180
|
+
* If `true`, returns an object with `buffer` and `engine`.
|
|
181
|
+
*/
|
|
182
|
+
info?: boolean | undefined;
|
|
175
183
|
}
|
|
176
184
|
interface Zlib {
|
|
177
185
|
/** @deprecated Use bytesWritten instead. */
|
|
@@ -612,8 +620,6 @@ declare module "zlib" {
|
|
|
612
620
|
const Z_FINISH: number;
|
|
613
621
|
/** @deprecated Use `constants.Z_BLOCK` */
|
|
614
622
|
const Z_BLOCK: number;
|
|
615
|
-
/** @deprecated Use `constants.Z_TREES` */
|
|
616
|
-
const Z_TREES: number;
|
|
617
623
|
// Return codes for the compression/decompression functions.
|
|
618
624
|
// Negative values are errors, positive values are used for special but normal events.
|
|
619
625
|
/** @deprecated Use `constants.Z_OK` */
|
node v22.15/README.md
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# Installation
|
|
2
|
-
> `npm install --save @types/node`
|
|
3
|
-
|
|
4
|
-
# Summary
|
|
5
|
-
This package contains type definitions for node (https://nodejs.org/).
|
|
6
|
-
|
|
7
|
-
# Details
|
|
8
|
-
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v22.
|
|
9
|
-
|
|
10
|
-
### Additional Details
|
|
11
|
-
* Last updated: Tue, 24 Jun 2025 16:39:29 GMT
|
|
12
|
-
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
|
-
|
|
14
|
-
# Credits
|
|
15
|
-
These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), [Dmitry Semigradsky](https://github.com/Semigradsky), and [René](https://github.com/Renegade334).
|