Whether to disable fetching uncached dependencies
The path to the config file that Deno should use.
The path to the executable that should be use when spawning the subprocess. Defaults to "deno".
Extra flags that should be passed to Deno. This may be useful for passing flags that are not supported by this library.
Path where deno can find an import map
Path where deno can find a lock file
Whether to disable typechecking when starting Deno
Whether to prevent Deno from loading packages from npm. Defaults to true.
Whether to use Deno's unstable features
V8 flags to be set when starting Deno
Specify the --location flag, which defines location.href. This must be a valid URL if provided.
Whether to log stderr from the worker. Defaults to true.
Whether to log stdout from the worker. Defaults to true.
The permissions that the Deno worker should use.
Whether to allow all permissions. Defaults to false.
Whether to allow reading environment variables. Defaults to false.
Whether to allow high resolution time measurement. Defaults to false.
Whether to allow network connnections. If given a list of strings then only the specified origins/paths are allowed. Defaults to false.
Whether to allow running Deno plugins. Defaults to false.
Whether to allow reading from the filesystem. If given a list of strings then only the specified file paths are allowed. Defaults to false.
Whether to allow running subprocesses. Defaults to false.
Whether to allow writing to the filesystem. If given a list of strings then only the specified file paths are allowed. Defaults to false.
Disable network access to provided IP addresses or hostnames. Any addresses
specified here will be denied access, even if they are specified in
allowNet
. Note that deno-vm needs a network connection between the host
and the guest, so it's not possible to fully disable network access.
Whether to reload scripts. If given a list of strings then only the specified URLs will be reloaded. Defaults to false when NODE_ENV is set to "production" and true otherwise.
Options used to spawn the Deno child process
Allow Deno to make requests to hosts with certificate errors.
Generated using TypeDoc
The path to the script that should be used to bootstrap the worker environment in Deno. If specified, this script will be used instead of the default bootstrap script. Only advanced users should set this.