{ "source": "doc/api/vm.md", "modules": [ { "textRaw": "VM (Executing JavaScript)", "name": "vm", "stability": 2, "stabilityText": "Stable", "desc": "

The vm module provides APIs for compiling and running code within V8 Virtual\nMachine contexts. It can be accessed using:

\n
const vm = require('vm');\n
\n

JavaScript code can be compiled and run immediately or compiled, saved, and run\nlater.

\n", "classes": [ { "textRaw": "Class: vm.Script", "type": "class", "name": "vm.Script", "meta": { "added": [ "v0.3.1" ], "changes": [] }, "desc": "

Instances of the vm.Script class contain precompiled scripts that can be\nexecuted in specific sandboxes (or "contexts").

\n", "methods": [ { "textRaw": "new vm.Script(code, options)", "type": "method", "name": "Script", "meta": { "added": [ "v0.3.1" ], "changes": [ { "version": "v5.7.0", "pr-url": "https://github.com/nodejs/node/pull/4777", "description": "The `cachedData` and `produceCachedData` options are supported now." } ] }, "signatures": [ { "params": [ { "textRaw": "`code` {string} The JavaScript code to compile. ", "name": "code", "type": "string", "desc": "The JavaScript code to compile." }, { "textRaw": "`options` ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." }, { "textRaw": "`cachedData` {Buffer} Provides an optional `Buffer` with V8's code cache data for the supplied source. When supplied, the `cachedDataRejected` value will be set to either `true` or `false` depending on acceptance of the data by V8. ", "name": "cachedData", "type": "Buffer", "desc": "Provides an optional `Buffer` with V8's code cache data for the supplied source. When supplied, the `cachedDataRejected` value will be set to either `true` or `false` depending on acceptance of the data by V8." }, { "textRaw": "`produceCachedData` {boolean} When `true` and no `cachedData` is present, V8 will attempt to produce code cache data for `code`. Upon success, a `Buffer` with V8's code cache data will be produced and stored in the `cachedData` property of the returned `vm.Script` instance. The `cachedDataProduced` value will be set to either `true` or `false` depending on whether code cache data is produced successfully. ", "name": "produceCachedData", "type": "boolean", "desc": "When `true` and no `cachedData` is present, V8 will attempt to produce code cache data for `code`. Upon success, a `Buffer` with V8's code cache data will be produced and stored in the `cachedData` property of the returned `vm.Script` instance. The `cachedDataProduced` value will be set to either `true` or `false` depending on whether code cache data is produced successfully." } ], "name": "options" } ] }, { "params": [ { "name": "code" }, { "name": "options" } ] } ], "desc": "

Creating a new vm.Script object compiles code but does not run it. The\ncompiled vm.Script can be run later multiple times. It is important to note\nthat the code is not bound to any global object; rather, it is bound before\neach run, just for that run.

\n" }, { "textRaw": "script.runInContext(contextifiedSandbox[, options])", "type": "method", "name": "runInContext", "meta": { "added": [ "v0.3.1" ], "changes": [ { "version": "v6.3.0", "pr-url": "https://github.com/nodejs/node/pull/6635", "description": "The `breakOnSigint` option is supported now." } ] }, "signatures": [ { "params": [ { "textRaw": "`contextifiedSandbox` {Object} A [contextified][] object as returned by the `vm.createContext()` method. ", "name": "contextifiedSandbox", "type": "Object", "desc": "A [contextified][] object as returned by the `vm.createContext()` method." }, { "textRaw": "`options` {Object} ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." }, { "textRaw": "`breakOnSigint`: if `true`, the execution will be terminated when `SIGINT` (Ctrl+C) is received. Existing handlers for the event that have been attached via `process.on(\"SIGINT\")` will be disabled during script execution, but will continue to work after that. If execution is terminated, an [`Error`][] will be thrown. ", "name": "breakOnSigint", "desc": "if `true`, the execution will be terminated when `SIGINT` (Ctrl+C) is received. Existing handlers for the event that have been attached via `process.on(\"SIGINT\")` will be disabled during script execution, but will continue to work after that. If execution is terminated, an [`Error`][] will be thrown." } ], "name": "options", "type": "Object", "optional": true } ] }, { "params": [ { "name": "contextifiedSandbox" }, { "name": "options", "optional": true } ] } ], "desc": "

Runs the compiled code contained by the vm.Script object within the given\ncontextifiedSandbox and returns the result. Running code does not have access\nto local scope.

\n

The following example compiles code that increments a global variable, sets\nthe value of another global variable, then execute the code multiple times.\nThe globals are contained in the sandbox object.

\n
const util = require('util');\nconst vm = require('vm');\n\nconst sandbox = {\n  animal: 'cat',\n  count: 2\n};\n\nconst script = new vm.Script('count += 1; name = "kitty";');\n\nconst context = new vm.createContext(sandbox);\nfor (var i = 0; i < 10; ++i) {\n  script.runInContext(context);\n}\n\nconsole.log(util.inspect(sandbox));\n\n// { animal: 'cat', count: 12, name: 'kitty' }\n
\n" }, { "textRaw": "script.runInNewContext([sandbox][, options])", "type": "method", "name": "runInNewContext", "meta": { "added": [ "v0.3.1" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`sandbox` {Object} An object that will be [contextified][]. If `undefined`, a new object will be created. ", "name": "sandbox", "type": "Object", "desc": "An object that will be [contextified][]. If `undefined`, a new object will be created.", "optional": true }, { "textRaw": "`options` {Object} ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." } ], "name": "options", "type": "Object", "optional": true } ] }, { "params": [ { "name": "sandbox", "optional": true }, { "name": "options", "optional": true } ] } ], "desc": "

First contextifies the given sandbox, runs the compiled code contained by\nthe vm.Script object within the created sandbox, and returns the result.\nRunning code does not have access to local scope.

\n

The following example compiles code that sets a global variable, then executes\nthe code multiple times in different contexts. The globals are set on and\ncontained within each individual sandbox.

\n
const util = require('util');\nconst vm = require('vm');\n\nconst script = new vm.Script('globalVar = "set"');\n\nconst sandboxes = [{}, {}, {}];\nsandboxes.forEach((sandbox) => {\n  script.runInNewContext(sandbox);\n});\n\nconsole.log(util.inspect(sandboxes));\n\n// [{ globalVar: 'set' }, { globalVar: 'set' }, { globalVar: 'set' }]\n
\n" }, { "textRaw": "script.runInThisContext([options])", "type": "method", "name": "runInThisContext", "meta": { "added": [ "v0.3.1" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`options` {Object} ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." } ], "name": "options", "type": "Object", "optional": true } ] }, { "params": [ { "name": "options", "optional": true } ] } ], "desc": "

Runs the compiled code contained by the vm.Script within the context of the\ncurrent global object. Running code does not have access to local scope, but\ndoes have access to the current global object.

\n

The following example compiles code that increments a global variable then\nexecutes that code multiple times:

\n
const vm = require('vm');\n\nglobal.globalVar = 0;\n\nconst script = new vm.Script('globalVar += 1', { filename: 'myfile.vm' });\n\nfor (var i = 0; i < 1000; ++i) {\n  script.runInThisContext();\n}\n\nconsole.log(globalVar);\n\n// 1000\n
\n" } ] } ], "methods": [ { "textRaw": "vm.createContext([sandbox])", "type": "method", "name": "createContext", "meta": { "added": [ "v0.3.1" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`sandbox` {Object} ", "name": "sandbox", "type": "Object", "optional": true } ] }, { "params": [ { "name": "sandbox", "optional": true } ] } ], "desc": "

If given a sandbox object, the vm.createContext() method will prepare\nthat sandbox so that it can be used in calls to\nvm.runInContext() or script.runInContext(). Inside such scripts,\nthe sandbox object will be the global object, retaining all of its existing\nproperties but also having the built-in objects and functions any standard\nglobal object has. Outside of scripts run by the vm module, global variables\nwill remain unchanged.

\n
const util = require('util');\nconst vm = require('vm');\n\nvar globalVar = 3;\n\nconst sandbox = { globalVar: 1 };\nvm.createContext(sandbox);\n\nvm.runInContext('globalVar *= 2;', sandbox);\n\nconsole.log(util.inspect(sandbox)); // 2\n\nconsole.log(util.inspect(globalVar)); // 3\n
\n

If sandbox is omitted (or passed explicitly as undefined), a new, empty\ncontextified sandbox object will be returned.

\n

The vm.createContext() method is primarily useful for creating a single\nsandbox that can be used to run multiple scripts. For instance, if emulating a\nweb browser, the method can be used to create a single sandbox representing a\nwindow's global object, then run all <script> tags together within the context\nof that sandbox.

\n" }, { "textRaw": "vm.isContext(sandbox)", "type": "method", "name": "isContext", "meta": { "added": [ "v0.11.7" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`sandbox` {Object} ", "name": "sandbox", "type": "Object" } ] }, { "params": [ { "name": "sandbox" } ] } ], "desc": "

Returns true if the given sandbox object has been contextified using\nvm.createContext().

\n" }, { "textRaw": "vm.runInContext(code, contextifiedSandbox[, options])", "type": "method", "name": "runInContext", "signatures": [ { "params": [ { "textRaw": "`code` {string} The JavaScript code to compile and run. ", "name": "code", "type": "string", "desc": "The JavaScript code to compile and run." }, { "textRaw": "`contextifiedSandbox` {Object} The [contextified][] object that will be used as the `global` when the `code` is compiled and run. ", "name": "contextifiedSandbox", "type": "Object", "desc": "The [contextified][] object that will be used as the `global` when the `code` is compiled and run." }, { "textRaw": "`options` ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." } ], "name": "options", "optional": true } ] }, { "params": [ { "name": "code" }, { "name": "contextifiedSandbox" }, { "name": "options", "optional": true } ] } ], "desc": "

The vm.runInContext() method compiles code, runs it within the context of\nthe contextifiedSandbox, then returns the result. Running code does not have\naccess to the local scope. The contextifiedSandbox object must have been\npreviously contextified using the vm.createContext() method.

\n

The following example compiles and executes different scripts using a single\ncontextified object:

\n
const util = require('util');\nconst vm = require('vm');\n\nconst sandbox = { globalVar: 1 };\nvm.createContext(sandbox);\n\nfor (var i = 0; i < 10; ++i) {\n  vm.runInContext('globalVar *= 2;', sandbox);\n}\nconsole.log(util.inspect(sandbox));\n\n// { globalVar: 1024 }\n
\n" }, { "textRaw": "vm.runInDebugContext(code)", "type": "method", "name": "runInDebugContext", "meta": { "added": [ "v0.11.14" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`code` {string} The JavaScript code to compile and run. ", "name": "code", "type": "string", "desc": "The JavaScript code to compile and run." } ] }, { "params": [ { "name": "code" } ] } ], "desc": "

The vm.runInDebugContext() method compiles and executes code inside the V8\ndebug context. The primary use case is to gain access to the V8 Debug object:

\n
const vm = require('vm');\nconst Debug = vm.runInDebugContext('Debug');\nconsole.log(Debug.findScript(process.emit).name);  // 'events.js'\nconsole.log(Debug.findScript(process.exit).name);  // 'internal/process.js'\n
\n

Note: The debug context and object are intrinsically tied to V8's debugger\nimplementation and may change (or even be removed) without prior warning.

\n

The Debug object can also be made available using the V8-specific\n--expose_debug_as= command line option.

\n" }, { "textRaw": "vm.runInNewContext(code[, sandbox][, options])", "type": "method", "name": "runInNewContext", "meta": { "added": [ "v0.3.1" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`code` {string} The JavaScript code to compile and run. ", "name": "code", "type": "string", "desc": "The JavaScript code to compile and run." }, { "textRaw": "`sandbox` {Object} An object that will be [contextified][]. If `undefined`, a new object will be created. ", "name": "sandbox", "type": "Object", "desc": "An object that will be [contextified][]. If `undefined`, a new object will be created.", "optional": true }, { "textRaw": "`options` ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." } ], "name": "options", "optional": true } ] }, { "params": [ { "name": "code" }, { "name": "sandbox", "optional": true }, { "name": "options", "optional": true } ] } ], "desc": "

The vm.runInNewContext() first contextifies the given sandbox object (or\ncreates a new sandbox if passed as undefined), compiles the code, runs it\nwithin the context of the created context, then returns the result. Running code\ndoes not have access to the local scope.

\n

The following example compiles and executes code that increments a global\nvariable and sets a new one. These globals are contained in the sandbox.

\n
const util = require('util');\nconst vm = require('vm');\n\nconst sandbox = {\n  animal: 'cat',\n  count: 2\n};\n\nvm.runInNewContext('count += 1; name = "kitty"', sandbox);\nconsole.log(util.inspect(sandbox));\n\n// { animal: 'cat', count: 3, name: 'kitty' }\n
\n" }, { "textRaw": "vm.runInThisContext(code[, options])", "type": "method", "name": "runInThisContext", "meta": { "added": [ "v0.3.1" ], "changes": [] }, "signatures": [ { "params": [ { "textRaw": "`code` {string} The JavaScript code to compile and run. ", "name": "code", "type": "string", "desc": "The JavaScript code to compile and run." }, { "textRaw": "`options` ", "options": [ { "textRaw": "`filename` {string} Specifies the filename used in stack traces produced by this script. ", "name": "filename", "type": "string", "desc": "Specifies the filename used in stack traces produced by this script." }, { "textRaw": "`lineOffset` {number} Specifies the line number offset that is displayed in stack traces produced by this script. ", "name": "lineOffset", "type": "number", "desc": "Specifies the line number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`columnOffset` {number} Specifies the column number offset that is displayed in stack traces produced by this script. ", "name": "columnOffset", "type": "number", "desc": "Specifies the column number offset that is displayed in stack traces produced by this script." }, { "textRaw": "`displayErrors` {boolean} When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace. ", "name": "displayErrors", "type": "boolean", "desc": "When `true`, if an [`Error`][] error occurs while compiling the `code`, the line of code causing the error is attached to the stack trace." }, { "textRaw": "`timeout` {number} Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown. ", "name": "timeout", "type": "number", "desc": "Specifies the number of milliseconds to execute `code` before terminating execution. If execution is terminated, an [`Error`][] will be thrown." } ], "name": "options", "optional": true } ] }, { "params": [ { "name": "code" }, { "name": "options", "optional": true } ] } ], "desc": "

vm.runInThisContext() compiles code, runs it within the context of the\ncurrent global and returns the result. Running code does not have access to\nlocal scope, but does have access to the current global object.

\n

The following example illustrates using both vm.runInThisContext() and\nthe JavaScript eval() function to run the same code:

\n
const vm = require('vm');\nvar localVar = 'initial value';\n\nconst vmResult = vm.runInThisContext('localVar = "vm";');\nconsole.log('vmResult:', vmResult);\nconsole.log('localVar:', localVar);\n\nconst evalResult = eval('localVar = "eval";');\nconsole.log('evalResult:', evalResult);\nconsole.log('localVar:', localVar);\n\n// vmResult: 'vm', localVar: 'initial value'\n// evalResult: 'eval', localVar: 'eval'\n
\n

Because vm.runInThisContext() does not have access to the local scope,\nlocalVar is unchanged. In contrast, eval() does have access to the\nlocal scope, so the value localVar is changed. In this way\nvm.runInThisContext() is much like an indirect eval() call, e.g.\n(0,eval)('code').

\n

Example: Running an HTTP Server within a VM

\n

When using either script.runInThisContext() or vm.runInThisContext(), the\ncode is executed within the current V8 global context. The code passed\nto this VM context will have its own isolated scope.

\n

In order to run a simple web server using the http module the code passed to\nthe context must either call require('http') on its own, or have a reference\nto the http module passed to it. For instance:

\n
'use strict';\nconst vm = require('vm');\n\nlet code =\n`(function(require) {\n\n   const http = require('http');\n\n   http.createServer( (request, response) => {\n     response.writeHead(200, {'Content-Type': 'text/plain'});\n     response.end('Hello World\\\\n');\n   }).listen(8124);\n\n   console.log('Server running at http://127.0.0.1:8124/');\n })`;\n\n vm.runInThisContext(code)(require);\n
\n

Note: The require() in the above case shares the state with the context it\nis passed from. This may introduce risks when untrusted code is executed, e.g.\naltering objects in the context in unwanted ways.

\n" } ], "modules": [ { "textRaw": "What does it mean to \"contextify\" an object?", "name": "what_does_it_mean_to_\"contextify\"_an_object?", "desc": "

All JavaScript executed within Node.js runs within the scope of a "context".\nAccording to the V8 Embedder's Guide:

\n
\n

In V8, a context is an execution environment that allows separate, unrelated,\nJavaScript applications to run in a single instance of V8. You must explicitly\nspecify the context in which you want any JavaScript code to be run.

\n
\n

When the method vm.createContext() is called, the sandbox object that is\npassed in (or a newly created object if sandbox is undefined) is associated\ninternally with a new instance of a V8 Context. This V8 Context provides the\ncode run using the vm modules methods with an isolated global environment\nwithin which it can operate. The process of creating the V8 Context and\nassociating it with the sandbox object is what this document refers to as\n"contextifying" the sandbox.

\n", "type": "module", "displayName": "What does it mean to \"contextify\" an object?" } ], "type": "module", "displayName": "vm" } ] }