Worker threads
目录
- worker.getEnvironmentData(key)
- worker.isMainThread
- worker.markAsUntransferable(object)
- worker.moveMessagePortToContext(port, contextifiedSandbox)
- worker.parentPort
- worker.receiveMessageOnPort(port)
- worker.resourceLimits
- worker.SHARE_ENV
- worker.setEnvironmentData(key[, value])
- worker.threadId
- worker.workerData
- Class: BroadcastChannel extends EventTarget
- Class: MessageChannel
- Class: MessagePort
- Class: Worker
- new Worker(filename[, options])
- Event: 'error'
- Event: 'exit'
- Event: 'message'
- Event: 'messageerror'
- Event: 'online'
- worker.getHeapSnapshot()
- worker.performance
- worker.postMessage(value[, transferList])
- worker.ref()
- worker.resourceLimits
- worker.stderr
- worker.stdin
- worker.stdout
- worker.terminate()
- worker.threadId
- worker.unref()
- Notes
自 v10.5.0 版本开始新增
The node:worker_threads module enables the use of threads that execute
JavaScript in parallel. To access it:
JS
Workers (threads) are useful for performing CPU-intensive JavaScript operations. They do not help much with I/O-intensive work. The Node.js built-in asynchronous I/O operations are more efficient than Workers can be.
Unlike child_process or cluster, worker_threads can share memory. They do
so by transferring ArrayBuffer instances or sharing SharedArrayBuffer
instances.
JS
The above example spawns a Worker thread for each parseJSAsync() call. In
practice, use a pool of Workers for these kinds of tasks. Otherwise, the
overhead of creating Workers would likely exceed their benefit.
When implementing a worker pool, use the AsyncResource API to inform
diagnostic tools (e.g. to provide asynchronous stack traces) about the
correlation between tasks and their outcomes. See
"Using AsyncResource for a Worker thread pool"
in the async_hooks documentation for an example implementation.
Worker threads inherit non-process-specific options by default. Refer to
Worker constructor options to know how to customize worker thread options,
specifically argv and execArgv options.
M worker.getEnvironmentData(key)
历史
| 版本 | 历史变更 |
|---|---|
| v17.5.0 | No longer experimental. |
| v15.12.0, v14.18.0 | 自 v15.12.0, v14.18.0 版本开始新增 |
Within a worker thread, worker.getEnvironmentData() returns a clone
of data passed to the spawning thread's worker.setEnvironmentData().
Every new Worker receives its own copy of the environment data
automatically.
JS
M worker.isMainThread
自 v10.5.0 版本开始新增
Is true if this code is not running inside of a Worker thread.
JS
M worker.markAsUntransferable(object)
自 v14.5.0, v12.19.0 版本开始新增
Mark an object as not transferable. If object occurs in the transfer list of
a port.postMessage() call, it is ignored.
In particular, this makes sense for objects that can be cloned, rather than
transferred, and which are used by other objects on the sending side.
For example, Node.js marks the ArrayBuffers it uses for its
Buffer pool with this.
This operation cannot be undone.
JS
There is no equivalent to this API in browsers.
M worker.moveMessagePortToContext(port, contextifiedSandbox)
自 v11.13.0 版本开始新增
portMessagePortThe message port to transfer.contextifiedSandboxObjectA contextified object as returned by thevm.createContext()method.Returns:
MessagePort
Transfer a MessagePort to a different vm Context. The original port
object is rendered unusable, and the returned MessagePort instance
takes its place.
The returned MessagePort is an object in the target context and
inherits from its global Object class. Objects passed to the
port.onmessage() listener are also created in the target context
and inherit from its global Object class.
However, the created MessagePort no longer inherits from
EventTarget, and only port.onmessage() can be used to receive
events using it.
M worker.parentPort
自 v10.5.0 版本开始新增
If this thread is a Worker, this is a MessagePort
allowing communication with the parent thread. Messages sent using
parentPort.postMessage() are available in the parent thread
using worker.on('message'), and messages sent from the parent thread
using worker.postMessage() are available in this thread using
parentPort.on('message').
JS
M worker.receiveMessageOnPort(port)
历史
| 版本 | 历史变更 |
|---|---|
| v15.12.0 | The port argument can also refer to a `BroadcastChannel` now. |
| v12.3.0 | 自 v12.3.0 版本开始新增 |
portMessagePort|BroadcastChannel
Receive a single message from a given MessagePort. If no message is available,
undefined is returned, otherwise an object with a single message property
that contains the message payload, corresponding to the oldest message in the
MessagePort's queue.
JS
When this function is used, no 'message' event is emitted and the
onmessage listener is not invoked.
M worker.resourceLimits
自 v13.2.0, v12.16.0 版本开始新增
Provides the set of JS engine resource constraints inside this Worker thread.
If the resourceLimits option was passed to the Worker constructor,
this matches its values.
If this is used in the main thread, its value is an empty object.
M worker.SHARE_ENV
自 v11.14.0 版本开始新增
A special value that can be passed as the env option of the Worker
constructor, to indicate that the current thread and the Worker thread should
share read and write access to the same set of environment variables.
JS
M worker.setEnvironmentData(key[, value])
历史
| 版本 | 历史变更 |
|---|---|
| v17.5.0 | No longer experimental. |
| v15.12.0, v14.18.0 | 自 v15.12.0, v14.18.0 版本开始新增 |
keyanyAny arbitrary, cloneable JavaScript value that can be used as aMapkey.valueanyAny arbitrary, cloneable JavaScript value that will be cloned and passed automatically to all newWorkerinstances. Ifvalueis passed asundefined, any previously set value for thekeywill be deleted.
The worker.setEnvironmentData() API sets the content of
worker.getEnvironmentData() in the current thread and all new Worker
instances spawned from the current context.
M worker.threadId
自 v10.5.0 版本开始新增
An integer identifier for the current thread. On the corresponding worker object
(if there is any), it is available as worker.threadId.
This value is unique for each Worker instance inside a single process.
M worker.workerData
自 v10.5.0 版本开始新增
An arbitrary JavaScript value that contains a clone of the data passed
to this thread's Worker constructor.
The data is cloned as if using postMessage(),
according to the HTML structured clone algorithm.
JS
C BroadcastChannel extends EventTarget
历史
| 版本 | 历史变更 |
|---|---|
| v18.0.0 | No longer experimental. |
| v15.4.0 | 自 v15.4.0 版本开始新增 |
Instances of BroadcastChannel allow asynchronous one-to-many communication
with all other BroadcastChannel instances bound to the same channel name.
JS
M new BroadcastChannel(name)
自 v15.4.0 版本开始新增
nameanyThe name of the channel to connect to. Any JavaScript value that can be converted to a string using`$name`is permitted.
M broadcastChannel.close()
自 v15.4.0 版本开始新增
Closes the BroadcastChannel connection.
M broadcastChannel.onmessage
自 v15.4.0 版本开始新增
- Type:
FunctionInvoked with a singleMessageEventargument when a message is received.
M broadcastChannel.onmessageerror
自 v15.4.0 版本开始新增
- Type:
FunctionInvoked with a received message cannot be deserialized.
M broadcastChannel.postMessage(message)
自 v15.4.0 版本开始新增
messageanyAny cloneable JavaScript value.
M broadcastChannel.ref()
自 v15.4.0 版本开始新增
Opposite of unref(). Calling ref() on a previously unref()ed
BroadcastChannel does not let the program exit if it's the only active handle
left (the default behavior). If the port is ref()ed, calling ref() again
has no effect.
M broadcastChannel.unref()
自 v15.4.0 版本开始新增
Calling unref() on a BroadcastChannel allows the thread to exit if this
is the only active handle in the event system. If the BroadcastChannel is
already unref()ed calling unref() again has no effect.
C MessageChannel
自 v10.5.0 版本开始新增
Instances of the worker.MessageChannel class represent an asynchronous,
two-way communications channel.
The MessageChannel has no methods of its own. new MessageChannel()
yields an object with port1 and port2 properties, which refer to linked
MessagePort instances.
JS
C MessagePort
历史
| 版本 | 历史变更 |
|---|---|
| v14.7.0 | This class now inherits from `EventTarget` rather than from `EventEmitter`. |
| v10.5.0 | 自 v10.5.0 版本开始新增 |
- Extends:
EventTarget
Instances of the worker.MessagePort class represent one end of an
asynchronous, two-way communications channel. It can be used to transfer
structured data, memory regions and other MessagePorts between different
Workers.
This implementation matches browser MessagePorts.
E 'close'
自 v10.5.0 版本开始新增
The 'close' event is emitted once either side of the channel has been
disconnected.
JS
E 'message'
自 v10.5.0 版本开始新增
valueanyThe transmitted value
The 'message' event is emitted for any incoming message, containing the cloned
input of port.postMessage().
Listeners on this event receive a clone of the value parameter as passed
to postMessage() and no further arguments.
E 'messageerror'
自 v14.5.0, v12.19.0 版本开始新增
errorErrorAn Error object
The 'messageerror' event is emitted when deserializing a message failed.
Currently, this event is emitted when there is an error occurring while
instantiating the posted JS object on the receiving end. Such situations
are rare, but can happen, for instance, when certain Node.js API objects
are received in a vm.Context (where Node.js APIs are currently
unavailable).
M port.close()
自 v10.5.0 版本开始新增
Disables further sending of messages on either side of the connection.
This method can be called when no further communication will happen over this
MessagePort.
The 'close' event is emitted on both MessagePort instances that
are part of the channel.
M port.postMessage(value[, transferList])
历史
| 版本 | 历史变更 |
|---|---|
| v15.14.0, v14.18.0 | Add 'BlockList' to the list of cloneable types. |
| v15.9.0, v14.18.0 | Add 'Histogram' types to the list of cloneable types. |
| v15.6.0 | Added `X509Certificate` to the list of cloneable types. |
| v15.0.0 | Added `CryptoKey` to the list of cloneable types. |
| v14.5.0, v12.19.0 | Added `KeyObject` to the list of cloneable types. |
| v14.5.0, v12.19.0 | Added `FileHandle` to the list of transferable types. |
| v10.5.0 | 自 v10.5.0 版本开始新增 |
valueanytransferListObject[]
Sends a JavaScript value to the receiving side of this channel.
value is transferred in a way which is compatible with
the HTML structured clone algorithm.
In particular, the significant differences to JSON are:
valuemay contain circular references.valuemay contain instances of builtin JS types such asRegExps,BigInts,Maps,Sets, etc.valuemay contain typed arrays, both usingArrayBuffers andSharedArrayBuffers.valuemay containWebAssembly.Moduleinstances.valuemay not contain native (C++-backed) objects other than:
JS
transferList may be a list of ArrayBuffer, MessagePort, and
FileHandle objects.
After transferring, they are not usable on the sending side of the channel
anymore (even if they are not contained in value). Unlike with
child processes, transferring handles such as network sockets is currently
not supported.
If value contains SharedArrayBuffer instances, those are accessible
from either thread. They cannot be listed in transferList.
value may still contain ArrayBuffer instances that are not in
transferList; in that case, the underlying memory is copied rather than moved.
JS
The message object is cloned immediately, and can be modified after posting without having side effects.
For more information on the serialization and deserialization mechanisms
behind this API, see the serialization API of the node:v8 module.
Considerations when transferring TypedArrays and Buffers
All TypedArray and Buffer instances are views over an underlying
ArrayBuffer. That is, it is the ArrayBuffer that actually stores
the raw data while the TypedArray and Buffer objects provide a
way of viewing and manipulating the data. It is possible and common
for multiple views to be created over the same ArrayBuffer instance.
Great care must be taken when using a transfer list to transfer an
ArrayBuffer as doing so causes all TypedArray and Buffer
instances that share that same ArrayBuffer to become unusable.
JS
For Buffer instances, specifically, whether the underlying
ArrayBuffer can be transferred or cloned depends entirely on how
instances were created, which often cannot be reliably determined.
An ArrayBuffer can be marked with markAsUntransferable() to indicate
that it should always be cloned and never transferred.
Depending on how a Buffer instance was created, it may or may
not own its underlying ArrayBuffer. An ArrayBuffer must not
be transferred unless it is known that the Buffer instance
owns it. In particular, for Buffers created from the internal
Buffer pool (using, for instance Buffer.from() or Buffer.allocUnsafe()),
transferring them is not possible and they are always cloned,
which sends a copy of the entire Buffer pool.
This behavior may come with unintended higher memory
usage and possible security concerns.
See Buffer.allocUnsafe() for more details on Buffer pooling.
The ArrayBuffers for Buffer instances created using
Buffer.alloc() or Buffer.allocUnsafeSlow() can always be
transferred but doing so renders all other existing views of
those ArrayBuffers unusable.
Considerations when cloning objects with prototypes, classes, and accessors
Because object cloning uses the HTML structured clone algorithm,
non-enumerable properties, property accessors, and object prototypes are
not preserved. In particular, Buffer objects will be read as
plain Uint8Arrays on the receiving side, and instances of JavaScript
classes will be cloned as plain JavaScript objects.
JS
This limitation extends to many built-in objects, such as the global URL
object:
JS
M port.hasRef()
自 v18.1.0 版本开始新增
- Returns:
boolean
If true, the MessagePort object will keep the Node.js event loop active.
M port.ref()
自 v10.5.0 版本开始新增
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
behavior). If the port is ref()ed, calling ref() again has no effect.
If listeners are attached or removed using .on('message'), the port
is ref()ed and unref()ed automatically depending on whether
listeners for the event exist.
M port.start()
自 v10.5.0 版本开始新增
Starts receiving messages on this MessagePort. When using this port
as an event emitter, this is called automatically once 'message'
listeners are attached.
This method exists for parity with the Web MessagePort API. In Node.js,
it is only useful for ignoring messages when no event listener is present.
Node.js also diverges in its handling of .onmessage. Setting it
automatically calls .start(), but unsetting it lets messages queue up
until a new handler is set or the port is discarded.
M port.unref()
自 v10.5.0 版本开始新增
Calling unref() on a port allows the thread to exit if this is the only
active handle in the event system. If the port is already unref()ed calling
unref() again has no effect.
If listeners are attached or removed using .on('message'), the port is
ref()ed and unref()ed automatically depending on whether
listeners for the event exist.
C Worker
自 v10.5.0 版本开始新增
- Extends:
EventEmitter
The Worker class represents an independent JavaScript execution thread.
Most Node.js APIs are available inside of it.
Notable differences inside a Worker environment are:
- The
process.stdin,process.stdout, andprocess.stderrstreams may be redirected by the parent thread. - The
require('node:worker_threads').isMainThreadproperty is set tofalse. - The
require('node:worker_threads').parentPortmessage port is available. process.exit()does not stop the whole program, just the single thread, andprocess.abort()is not available.process.chdir()andprocessmethods that set group or user ids are not available.process.envis a copy of the parent thread's environment variables, unless otherwise specified. Changes to one copy are not visible in other threads, and are not visible to native add-ons (unlessworker.SHARE_ENVis passed as theenvoption to theWorkerconstructor).process.titlecannot be modified.- Signals are not delivered through
process.on('...'). - Execution may stop at any point as a result of
worker.terminate()being invoked. - IPC channels from parent processes are not accessible.
- The
trace_eventsmodule is not supported. - Native add-ons can only be loaded from multiple threads if they fulfill certain conditions.
Creating Worker instances inside of other Workers is possible.
Like Web Workers and the node:cluster module, two-way communication
can be achieved through inter-thread message passing. Internally, a Worker has
a built-in pair of MessagePorts that are already associated with each
other when the Worker is created. While the MessagePort object on the parent
side is not directly exposed, its functionalities are exposed through
worker.postMessage() and the worker.on('message') event
on the Worker object for the parent thread.
To create custom messaging channels (which is encouraged over using the default
global channel because it facilitates separation of concerns), users can create
a MessageChannel object on either thread and pass one of the
MessagePorts on that MessageChannel to the other thread through a
pre-existing channel, such as the global one.
See port.postMessage() for more information on how messages are passed,
and what kind of JavaScript values can be successfully transported through
the thread barrier.
JS
M new Worker(filename[, options])
历史
| 版本 | 历史变更 |
|---|---|
| v14.9.0 | The `filename` parameter can be a WHATWG `URL` object using `data:` protocol. |
| v14.9.0 | The `trackUnmanagedFds` option was set to `true` by default. |
| v14.6.0, v12.19.0 | The `trackUnmanagedFds` option was introduced. |
| v13.13.0, v12.17.0 | The `transferList` option was introduced. |
| v13.12.0, v12.17.0 | The `filename` parameter can be a WHATWG `URL` object using `file:` protocol. |
| v13.4.0, v12.16.0 | The `argv` option was introduced. |
| v13.2.0, v12.16.0 | The `resourceLimits` option was introduced. |
| v10.5.0 | 自 v10.5.0 版本开始新增 |
filenamestring|URLThe path to the Worker's main script or module. Must be either an absolute path or a relative path (i.e. relative to the current working directory) starting with./or../, or a WHATWGURLobject usingfile:ordata:protocol. When using adata:URL, the data is interpreted based on MIME type using the ECMAScript module loader. Ifoptions.evalistrue, this is a string containing JavaScript code rather than a path.optionsObjectargvany[] List of arguments which would be stringified and appended toprocess.argvin the worker. This is mostly similar to theworkerDatabut the values are available on the globalprocess.argvas if they were passed as CLI options to the script.envObjectIf set, specifies the initial value ofprocess.envinside the Worker thread. As a special value,worker.SHARE_ENVmay be used to specify that the parent thread and the child thread should share their environment variables; in that case, changes to one thread'sprocess.envobject affect the other thread as well. Default:process.env.evalbooleanIftrueand the first argument is astring, interpret the first argument to the constructor as a script that is executed once the worker is online.execArgvstring[] List of node CLI options passed to the worker. V8 options (such as--max-old-space-size) and options that affect the process (such as--title) are not supported. If set, this is provided asprocess.execArgvinside the worker. By default, options are inherited from the parent thread.stdinbooleanIf this is set totrue, thenworker.stdinprovides a writable stream whose contents appear asprocess.stdininside the Worker. By default, no data is provided.stdoutbooleanIf this is set totrue, thenworker.stdoutis not automatically piped through toprocess.stdoutin the parent.stderrbooleanIf this is set totrue, thenworker.stderris not automatically piped through toprocess.stderrin the parent.workerDataanyAny JavaScript value that is cloned and made available asrequire('node:worker_threads').workerData. The cloning occurs as described in the HTML structured clone algorithm, and an error is thrown if the object cannot be cloned (e.g. because it containsfunctions).trackUnmanagedFdsbooleanIf this is set totrue, then the Worker tracks raw file descriptors managed throughfs.open()andfs.close(), and closes them when the Worker exits, similar to other resources like network sockets or file descriptors managed through theFileHandleAPI. This option is automatically inherited by all nestedWorkers. Default:true.transferListObject[] If one or moreMessagePort-like objects are passed inworkerData, atransferListis required for those items orERR_MISSING_MESSAGE_PORT_IN_TRANSFER_LISTis thrown. Seeport.postMessage()for more information.resourceLimitsObjectAn optional set of resource limits for the new JS engine instance. Reaching these limits leads to termination of theWorkerinstance. These limits only affect the JS engine, and no external data, including noArrayBuffers. Even if these limits are set, the process may still abort if it encounters a global out-of-memory situation.maxOldGenerationSizeMbnumberThe maximum size of the main heap in MB. If the command-line argument--max-old-space-sizeis set, it overrides this setting.maxYoungGenerationSizeMbnumberThe maximum size of a heap space for recently created objects. If the command-line argument--max-semi-space-sizeis set, it overrides this setting.codeRangeSizeMbnumberThe size of a pre-allocated memory range used for generated code.stackSizeMbnumberThe default maximum stack size for the thread. Small values may lead to unusable Worker instances. Default:4.
E 'error'
自 v10.5.0 版本开始新增
errError
The 'error' event is emitted if the worker thread throws an uncaught
exception. In that case, the worker is terminated.
E 'exit'
自 v10.5.0 版本开始新增
exitCodeinteger
The 'exit' event is emitted once the worker has stopped. If the worker
exited by calling process.exit(), the exitCode parameter is the
passed exit code. If the worker was terminated, the exitCode parameter is
1.
This is the final event emitted by any Worker instance.
E 'message'
自 v10.5.0 版本开始新增
valueanyThe transmitted value
The 'message' event is emitted when the worker thread has invoked
require('node:worker_threads').parentPort.postMessage().
See the port.on('message') event for more details.
All messages sent from the worker thread are emitted before the
'exit' event is emitted on the Worker object.
E 'messageerror'
自 v14.5.0, v12.19.0 版本开始新增
errorErrorAn Error object
The 'messageerror' event is emitted when deserializing a message failed.
E 'online'
自 v10.5.0 版本开始新增
The 'online' event is emitted when the worker thread has started executing
JavaScript code.
M worker.getHeapSnapshot()
自 v13.9.0, v12.17.0 版本开始新增
- Returns:
PromiseA promise for a Readable Stream containing a V8 heap snapshot
Returns a readable stream for a V8 snapshot of the current state of the Worker.
See v8.getHeapSnapshot() for more details.
If the Worker thread is no longer running, which may occur before the
'exit' event is emitted, the returned Promise is rejected
immediately with an ERR_WORKER_NOT_RUNNING error.
M worker.performance
自 v15.1.0, v14.17.0, v12.22.0 版本开始新增
An object that can be used to query performance information from a worker
instance. Similar to perf_hooks.performance.
M performance.eventLoopUtilization([utilization1[, utilization2]])
自 v15.1.0, v14.17.0, v12.22.0 版本开始新增
utilization1ObjectThe result of a previous call toeventLoopUtilization().utilization2ObjectThe result of a previous call toeventLoopUtilization()prior toutilization1.- Returns
Object
The same call as perf_hooks eventLoopUtilization(), except the values
of the worker instance are returned.
One difference is that, unlike the main thread, bootstrapping within a worker is done within the event loop. So the event loop utilization is immediately available once the worker's script begins execution.
An idle time that does not increase does not indicate that the worker is
stuck in bootstrap. The following examples shows how the worker's entire
lifetime never accumulates any idle time, but is still be able to process
messages.
JS
The event loop utilization of a worker is available only after the 'online'
event emitted, and if called before this, or after the 'exit'
event, then all properties have the value of 0.
M worker.postMessage(value[, transferList])
自 v10.5.0 版本开始新增
valueanytransferListObject[]
Send a message to the worker that is received via
require('node:worker_threads').parentPort.on('message').
See port.postMessage() for more details.
M worker.ref()
自 v10.5.0 版本开始新增
Opposite of unref(), calling ref() on a previously unref()ed worker does
not let the program exit if it's the only active handle left (the default
behavior). If the worker is ref()ed, calling ref() again has
no effect.
M worker.resourceLimits
自 v13.2.0, v12.16.0 版本开始新增
Provides the set of JS engine resource constraints for this Worker thread.
If the resourceLimits option was passed to the Worker constructor,
this matches its values.
If the worker has stopped, the return value is an empty object.
M worker.stderr
自 v10.5.0 版本开始新增
This is a readable stream which contains data written to process.stderr
inside the worker thread. If stderr: true was not passed to the
Worker constructor, then data is piped to the parent thread's
process.stderr stream.
M worker.stdin
自 v10.5.0 版本开始新增
If stdin: true was passed to the Worker constructor, this is a
writable stream. The data written to this stream will be made available in
the worker thread as process.stdin.
M worker.stdout
自 v10.5.0 版本开始新增
This is a readable stream which contains data written to process.stdout
inside the worker thread. If stdout: true was not passed to the
Worker constructor, then data is piped to the parent thread's
process.stdout stream.
M worker.terminate()
历史
| 版本 | 历史变更 |
|---|---|
| v12.5.0 | This function now returns a Promise. Passing a callback is deprecated, and was useless up to this version, as the Worker was actually terminated synchronously. Terminating is now a fully asynchronous operation. |
| v10.5.0 | 自 v10.5.0 版本开始新增 |
- Returns:
Promise
Stop all JavaScript execution in the worker thread as soon as possible.
Returns a Promise for the exit code that is fulfilled when the
'exit' event is emitted.
M worker.threadId
自 v10.5.0 版本开始新增
An integer identifier for the referenced thread. Inside the worker thread,
it is available as require('node:worker_threads').threadId.
This value is unique for each Worker instance inside a single process.
M worker.unref()
自 v10.5.0 版本开始新增
Calling unref() on a worker allows the thread to exit if this is the only
active handle in the event system. If the worker is already unref()ed calling
unref() again has no effect.
Notes
Synchronous blocking of stdio
Workers utilize message passing via MessagePort to implement interactions
with stdio. This means that stdio output originating from a Worker can
get blocked by synchronous code on the receiving end that is blocking the
Node.js event loop.
MJS
CJS
Launching worker threads from preload scripts
Take care when launching worker threads from preload scripts (scripts loaded
and run using the -r command line flag). Unless the execArgv option is
explicitly set, new Worker threads automatically inherit the command line flags
from the running process and will preload the same preload scripts as the main
thread. If the preload script unconditionally launches a worker thread, every
thread spawned will spawn another until the application crashes.