Replies: 1 comment
-
TODO: Write this better + link |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
ScriptExecutionTools
is an abstract container that represents all the tools needed to EXECUTE SCRIPTs. It is implemented by concrete execution tools:JavascriptExecutionTools
is a wrapper aroundvm2
module that executes javascript code in a sandbox.JavascriptEvalExecutionTools
is wrapper aroundeval
function that executes javascript. It is used for testing and mocking NOT intended to use in the production due to its unsafe nature, useJavascriptExecutionTools
instead.TypescriptExecutionTools
executes typescript code in a sandbox.PythonExecutionTools
executes python code in a sandbox.There are postprocessing functions that can be used to postprocess the result.
See more in #77
Beta Was this translation helpful? Give feedback.
All reactions