asbox
v1.0.9
Published
[nodejs] Secure async code evaluation
Downloads
16
Readme
ASbox
[nodejs] Secure async code evaluation
Install
npm install asbox
Usage
var run = require('asbox');
var src = "(function(){ return v; })()";
run(src, { v: 42 }, function(out){
console.log(out);
});
console.log('This runs before');