返回 Skill 列表
extension
分类: 开发与工程无需 API Key

e2b-sandbox

使用ComputeSDK创建和管理E2B沙箱的指南。在构建需要E2B Firecracker微虚拟机沙箱以实现安全代码执行、AI代码运行器或隔离开发环境的应用程序时,请使用本指南。

person作者: jakexiaohubgithub

E2B Sandboxes with ComputeSDK

E2B provider for ComputeSDK - cloud sandboxes with full Linux environments, filesystem access, and microVM isolation.

Setup

npm install computesdk @computesdk/e2b

Set your credentials:

# .env
E2B_API_KEY=your_e2b_api_key

Quick Start

import { compute } from 'computesdk';
import { e2b } from '@computesdk/e2b';

compute.setConfig({
  provider: e2b({
    apiKey: process.env.E2B_API_KEY,
  }),
});

const sandbox = await compute.sandbox.create();

const result = await sandbox.runCommand('echo "Hello from E2B!"');
console.log(result.stdout);

await sandbox.destroy();

You can also call the provider factory directly:

import { e2b } from '@computesdk/e2b';

const sdk = e2b({
    apiKey: process.env.E2B_API_KEY,
  });
const sandbox = await sdk.sandbox.create();

E2B Configuration

interface E2BConfig {

  /** E2B API key - if not provided, will fallback to E2B_API_KEY environment variable */
  apiKey?: string;
  /** Execution timeout in milliseconds */
  timeout?: number;

}

Full API

ComputeSDK exposes the same universal sandbox API across providers: sandbox.create(), sandbox.getById(), sandbox.destroy(), sandbox.runCommand(), sandbox.getInfo(), sandbox.getUrl(), and sandbox.filesystem.*.

Install the main skill for the complete reference:

npx skills add https://github.com/computesdk/sandbox-skills --skill computesdk

Or see https://www.computesdk.com/docs/reference/sandbox/.