Skip to content

Instantly share code, notes, and snippets.

@ambroseus
Created March 3, 2021 07:15
Show Gist options
  • Save ambroseus/9249ffcb39344f3a8e60193aa211d22b to your computer and use it in GitHub Desktop.
Save ambroseus/9249ffcb39344f3a8e60193aa211d22b to your computer and use it in GitHub Desktop.
node vm exec script
const { VM } = require('vm2')
const defaultVMOptions = {
timeout: 5000, // 5 sec
eval: false, // no eval
wasm: false, // no wasm
fixAsync: true, // no async
}
function execScript({
$ = {},
_ = {},
script = '',
input = {},
options = {},
}) {
const vm = new VM({
...defaultVMOptions,
sandbox: { $, _, input, output },
})
vm.run(
`(function({ $, _, input, output }){\n${script}\n})({ $, _, input, output })`
)
return { output }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment