Created
March 3, 2021 07:15
-
-
Save ambroseus/9249ffcb39344f3a8e60193aa211d22b to your computer and use it in GitHub Desktop.
node vm exec script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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