Node.js VM Modülü

❮ Dahili Modüller


Örnek

Bir "sanal makinede" biraz JavaScript kodu çalıştırın:

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

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

console.log(myObj);

Tanım ve Kullanım

VM modülü, JavaScript'teki eval() gibi, sanal bir makinede JavaScript yürütmenin bir yolunu sağlar.


Sözdizimi

VM modülünü uygulamanıza dahil etmek için sözdizimi:

var vm = require('vm');

VM Özellikleri ve Yöntemleri

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

❮ Dahili Modüller