Use this file to discover all available pages before exploring further.
Example on GitHub
Runnable example for capturing console output.
Console output from sandboxed code is not buffered into result fields. exec() and run() do not return stdout or stderr. Use the onStdio hook to capture output.The per-execution onStdio option is available on exec() only. To capture output from run() calls, set a runtime-level hook when creating the NodeRuntime (see Default hook below).
Buffering console output by default would let untrusted code grow host memory without bound by logging at high volume. The explicit onStdio hook puts you in control of how output is stored and when to stop collecting.