Modul VM Node.js

❮ Vestavěné moduly


Příklad

Spusťte nějaký kód JavaScript ve „virtuálním počítači“:

var vm = require('vm');
var myObj = { name: 'John', age: 38 };
vm.createContext(myObj);

vm.runInContext('age += 1;', myObj);

console.log(myObj);

Definice a použití

Modul VM poskytuje způsob spouštění JavaScriptu na virtuálním počítači, téměř jako eval() v JavaScriptu.


Syntax

Syntaxe pro zahrnutí modulu VM do vaší aplikace:

var vm = require('vm');

Vlastnosti a metody VM

Method Description
createContext() Prepares a virtual machine, or sandbox, where you can execute scripts
isContext() Returns true if the specified sandbox has been created by the createContext() method
runInContext() Executes JavaScript code in the specified context, and returns the result
runInDebug() Executes JavaScript inside the debug context
runInNewContext() Executes JavaScript code in a new context, and returns the result
runInThisContext() Executes JavaScript code in the global context, and returns the result

❮ Vestavěné moduly