native-vm
v1.0.5
Published
node rewrite of vm module
Downloads
43
Maintainers
Readme
native-vm
node rewrite of vm module
Installation
npm i --save native-vm
Usage
Same as node vm!
Script
var Script = require( 'native-vm/lib/script' )
var script = new Script(function () {
return NON_DEFINED_VAR;
})
// Generate a function that runs with specific context
var fn = script.runInContext({
NON_DEFINED_VAR: 'yolo'
})
// Run fn
fn() // returns 'yolo'