-
Notifications
You must be signed in to change notification settings - Fork 578
Updated docs on JS/TS kernel #748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
72 changes: 64 additions & 8 deletions
72
...b/src/app/(docs)/docs/code-interpreting/supported-languages/javascript/page.mdx
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,75 @@ | ||
# 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`. | ||
# Run JavaScript and TypeScript code | ||
|
||
Use the `runCode`/`run_code` method to run JavaScript and TypeScript code inside the sandbox. | ||
You'll need to pass the `language` parameter with value `javascript` or `js` for JavaScript and `typescript` or `ts` for TypeScript. | ||
|
||
<Note> | ||
Our code interpreter has been updated to enable support for TypeScript, top-level await, ESM-style imports and automatic promises resolution. | ||
</Note> | ||
|
||
<CodeGroup> | ||
```js | ||
import { Sandbox } from '@e2b/code-interpreter' | ||
import { Sandbox } from "@e2b/code-interpreter"; | ||
|
||
// Create a new sandbox | ||
const sbx = await Sandbox.create(); | ||
|
||
// Install the axios package | ||
await sbx.commands.run("npm install axios"); | ||
|
||
// Run the code | ||
const execution = await sbx.runCode(` | ||
import axios from "axios"; | ||
|
||
const url: string = "https://api.github.com/status"; | ||
const response = await axios.get(url); | ||
response.data; | ||
`, | ||
{ language: "ts" } | ||
); | ||
|
||
const sbx = await Sandbox.create() | ||
const execution = await sbx.runCode('console.log("Hello, world!")', { language: 'js' }) | ||
console.log(execution) | ||
console.log(execution); | ||
|
||
// Execution { | ||
// results: [], | ||
// logs: { | ||
// stdout: [ "{ message: 'GitHub lives! (2025-05-28 10:49:55 -0700) (1)' }\n" ], | ||
// stderr: [], | ||
// }, | ||
// error: undefined, | ||
// executionCount: 1, | ||
// text: [Getter], | ||
// toJSON: [Function: toJSON], | ||
// } | ||
``` | ||
```python | ||
from e2b_code_interpreter import Sandbox | ||
|
||
# Create a new sandbox | ||
sbx = Sandbox() | ||
execution = sbx.run_code('console.log("Hello, world!")', language="js") | ||
|
||
# Install the axios package | ||
sbx.commands.run("npm install axios") | ||
|
||
# Run the code | ||
execution = sbx.run_code(""" | ||
import axios from "axios"; | ||
|
||
const url: string = "https://api.github.com/status"; | ||
const response = await axios.get(url); | ||
response.data; | ||
""", | ||
language="ts", | ||
) | ||
|
||
print(execution) | ||
|
||
# Execution( | ||
# Results: [ | ||
# Result({ message: 'GitHub lives! (2025-05-28 10:48:47 -0700) (1)' }) | ||
# ], | ||
# Logs: Logs(stdout: [], stderr: []), | ||
# Error: None | ||
# ) | ||
``` | ||
</CodeGroup> |
This file contains hidden or 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
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.