Run JavaScript code

Use the runCode/run_code method to run JavaScript code inside the sandbox. You'll need to pass the language parameter with value javascript or js.

import { Sandbox } from '@e2b/code-interpreter'

const sbx = await Sandbox.create()
const execution = await sbx.runCode('console.log("Hello, world!")', { language: 'js' })
console.log(execution)