@alibaba-group/opensandbox
v1.1.0
Published
OpenSandbox TypeScript/JavaScript SDK (sandbox lifecycle + execd APIs)
Readme
Alibaba Sandbox SDK for JavaScript/TypeScript
A TypeScript/JavaScript SDK for low-level interaction with OpenSandbox. It provides the ability to create, manage, and interact with secure sandbox environments, including executing shell commands, managing files, and reading resource metrics.
Installation
npm
npm install @alibaba-group/opensandboxpnpm
pnpm add @alibaba-group/opensandboxyarn
yarn add @alibaba-group/opensandboxQuick Start
The following example shows how to create a sandbox and execute a shell command.
Note: Before running this example, ensure the OpenSandbox service is running. See the root README.md for startup instructions.
import { ConnectionConfig, Sandbox, SandboxException } from "@alibaba-group/opensandbox";
const config = new ConnectionConfig({
domain: "api.opensandbox.io",
apiKey: "your-api-key",
// protocol: "https",
// requestTimeoutSeconds: 60,
});
try {
const sandbox = await Sandbox.create({
connectionConfig: config,
image: "ubuntu",
timeoutSeconds: 10 * 60,
});
const execution = await sandbox.commands.run("echo 'Hello Sandbox!'");
console.log(execution.logs.stdout[0]?.text);
// Optional but recommended: terminate the remote instance when you are done.
await sandbox.kill();
await sandbox.close();
} catch (err) {
if (err instanceof SandboxException) {
console.error(
`Sandbox Error: [${err.error.code}] ${err.error.message ?? ""}`,
);
console.error(`Request ID: ${err.requestId ?? "N/A"}`);
} else {
console.error(err);
}
}Client-side sandbox pool
SandboxPool maintains a best-effort buffer of clean, ready sandboxes. An
acquired sandbox becomes caller-owned and is never returned to the pool; kill
it when the work is complete. The pool replenishes the idle buffer in the
background.
import {
AcquirePolicy,
InMemoryPoolStateStore,
SandboxPool,
} from "@alibaba-group/opensandbox";
const pool = SandboxPool.create({
poolName: "workers",
maxIdle: 2,
stateStore: new InMemoryPoolStateStore(),
connectionConfig: { apiKey: process.env.OPEN_SANDBOX_API_KEY },
creationSpec: { image: "ubuntu:24.04" },
});
await pool.start();
const sandbox = await pool.acquire({
sandboxTimeoutSeconds: 3600,
policy: AcquirePolicy.DIRECT_CREATE,
});
try {
await sandbox.commands.run("echo ready");
} finally {
await sandbox.kill();
await sandbox.close();
await pool.shutdown();
}InMemoryPoolStateStore is process-local. For a distributed pool, install a
Redis client only in the application that needs it and import the optional
pool subpath:
npm install redisimport { createClient } from "redis";
import { RedisPoolStateStore } from "@alibaba-group/opensandbox/pool-redis";
const redis = createClient({ url: process.env.REDIS_URL });
await redis.connect();
const stateStore = new RedisPoolStateStore({ client: redis });The SDK does not import redis from its main entry point and does not create,
connect, or close the injected client. Any compatible client that implements
sendCommand(string[]) can be used.
Pool warmup is admitted at warmupCreateQps per one-second reconcile tick.
Creation is asynchronous; warmupConcurrency limits the post-create readiness,
preparation, renewal, and commit stages. Use warmupSandboxPreparer,
warmupPostPrepareHealthCheck, and the corresponding timeout/polling options
for staged warmup. Set connectionConfig.enableTracing to emit OpenTelemetry
pool.warmup traces with one child span per stage.
SandboxPoolManager.destroy(poolName) writes a shared DESTROYING fence,
drains and best-effort kills visible idle sandboxes, clears persistent pool
state, and writes a DESTROYED tombstone. drainTimeoutSeconds is checked
before each drain attempt and bounds in-flight sandbox deletion; set it to 0
to disable that bound. State-store calls remain subject to the store client's
own request timeout. If drain or persistent-state cleanup cannot finish, the
namespace remains fenced as DESTROYING. Retry destroy() with the same pool
name to finish cleanup.
Usage Examples
1. Lifecycle Management
Manage the sandbox lifecycle, including renewal, pausing, and resuming.
const info = await sandbox.getInfo();
console.log("State:", info.status.state);
console.log("Created:", info.createdAt);
console.log("Expires:", info.expiresAt); // null when manual cleanup mode is used
await sandbox.pause();
// Resume returns a fresh, connected Sandbox instance.
const resumed = await sandbox.resume();
// Renew: expiresAt = now + timeoutSeconds
await resumed.renew(30 * 60);Create a non-expiring sandbox by passing timeoutSeconds: null:
const manual = await Sandbox.create({
connectionConfig: config,
image: "ubuntu",
timeoutSeconds: null,
});2. Custom Health Check
Define custom logic to determine whether the sandbox is ready/healthy. This overrides the default ping check used during readiness checks.
const sandbox = await Sandbox.create({
connectionConfig: config,
image: "nginx:latest",
healthCheck: async (sbx) => {
// Example: consider the sandbox healthy when port 80 endpoint becomes available
const ep = await sbx.getEndpoint(80);
return !!ep.endpoint;
},
});3. Command Execution & Streaming
Execute commands and handle output streams in real-time.
import type { ExecutionHandlers } from "@alibaba-group/opensandbox";
const handlers: ExecutionHandlers = {
onStdout: (m) => console.log("STDOUT:", m.text),
onStderr: (m) => console.error("STDERR:", m.text),
onExecutionComplete: (c) =>
console.log("Finished in", c.executionTimeMs, "ms"),
};
await sandbox.commands.run(
'for i in 1 2 3; do echo "Count $i"; sleep 0.2; done',
undefined,
handlers,
);4. Comprehensive File Operations
Manage files and directories, including read, write, list/search, and delete.
await sandbox.files.createDirectories([{ path: "/tmp/demo", mode: 755 }]);
await sandbox.files.writeFiles([
{ path: "/tmp/demo/hello.txt", data: "Hello World", mode: 644 },
]);
const content = await sandbox.files.readFile("/tmp/demo/hello.txt");
console.log("Content:", content);
const files = await sandbox.files.search({
path: "/tmp/demo",
pattern: "*.txt",
});
console.log(files.map((f) => f.path));
await sandbox.files.deleteDirectories(["/tmp/demo"]);5. Endpoints
getEndpoint() returns an endpoint without a scheme (for example "localhost:44772"). Use getEndpointUrl() if you want a ready-to-use absolute URL (for example "http://localhost:44772").
const { endpoint } = await sandbox.getEndpoint(44772);
const url = await sandbox.getEndpointUrl(44772);6. Snapshots (Manager)
SandboxManager administers sandbox snapshots — capture a sandbox's
state and restore new sandboxes from it via snapshotId:
import { SandboxManager } from "@alibaba-group/opensandbox";
const manager = SandboxManager.create({ connectionConfig: config });
// Create a snapshot from a running sandbox, then wait until it is Ready
const snapshot = await manager.createSnapshot(sandboxId, {
name: "pre-migration",
});
let info = await manager.getSnapshot(snapshot.id);
while (info.status.state === "Creating") {
await new Promise((r) => setTimeout(r, 2000));
info = await manager.getSnapshot(snapshot.id);
}
// List all snapshots
const page = await manager.listSnapshots();
// Restore: create a new sandbox FROM a snapshot (exactly one of
// image / snapshotId must be provided)
const restored = await Sandbox.create({
connectionConfig: config,
snapshotId: snapshot.id,
});
// Only delete the snapshot after the restore has succeeded
await manager.deleteSnapshot(snapshot.id);7. Isolated Sessions
Isolated sessions run multi-step code in a hardened, resource-bounded
environment with bind mounts — reachable through sandbox.isolation:
const session = await sandbox.isolation.create({
workspace: { path: "/workspace", mode: "rw" },
profile: "strict",
// Optional bind mounts (source on host, dest inside the session)
binds: [{ source: "/data", dest: "/data", readonly: true }],
});
const run = await session.run("python -c 'print(1+1)'", {
// timeout_seconds: 30, // seconds; applies to run() only —
// runBackground() deliberately ignores it (background runs are not time-limited)
});
console.log(run.logs.stdout[0]?.text);
// Background runs: start, poll until finished, then fetch logs.
// NOTE: field names are snake_case (run_id) — they mirror the raw API
// response and are NOT converted to camelCase.
const bg = await session.runBackground("make build");
let status = await session.getRunStatus(bg.run_id);
while (status.running) {
await new Promise((r) => setTimeout(r, 2000));
status = await session.getRunStatus(bg.run_id);
}
const logs = await session.getRunLogs(bg.run_id);
await session.delete();8. Volume Mounts
volumes supports host, pvc, and ossfs backends. Each volume must specify exactly one backend.
const sandbox = await Sandbox.create({
connectionConfig: config,
image: "ubuntu",
volumes: [
{
name: "oss-data",
ossfs: {
bucket: "bucket-a",
endpoint: "oss-cn-hangzhou.aliyuncs.com",
accessKeyId: process.env.OSS_ACCESS_KEY_ID!,
accessKeySecret: process.env.OSS_ACCESS_KEY_SECRET!,
version: "2.0",
},
mountPath: "/mnt/oss",
subPath: "prefix",
},
],
});9. Sandbox Management (Admin)
Use SandboxManager for administrative tasks and finding existing sandboxes.
import { SandboxManager } from "@alibaba-group/opensandbox";
const manager = SandboxManager.create({ connectionConfig: config });
const list = await manager.listSandboxInfos({
states: ["Running"],
pageSize: 10,
});
console.log(list.items.map((s) => s.id));
await manager.close();Configuration
1. Connection Configuration
The ConnectionConfig class manages API server connection settings.
Runtime notes:
- In browsers, the SDK uses the global
fetchimplementation. - In Node.js, every
SandboxandSandboxManagerclones the baseConnectionConfigviawithTransportIfMissing(), so each instance gets an isolatedundicikeep-alive pool. Callsandbox.close()ormanager.close()when you are done so the SDK can release the associated agent.
| Parameter | Description | Default | Environment Variable |
| ----------------------- | ------------------------------------------------------------------------------------------------------------ | ---------------- | ---------------------- |
| apiKey | API key for authentication | Optional | OPEN_SANDBOX_API_KEY |
| domain | Sandbox service domain (host[:port]) | localhost:8080 | OPEN_SANDBOX_DOMAIN |
| protocol | HTTP protocol (http/https) | http | - |
| requestTimeoutSeconds | Request timeout applied to SDK HTTP calls | 30 | - |
| debug | Enable basic HTTP debug logging | false | - |
| headers | Extra headers applied to every request | {} | - |
| useServerProxy | Use sandbox server as proxy for execd/endpoint requests (e.g. when client cannot reach the sandbox directly) | false | - |
import { ConnectionConfig } from "@alibaba-group/opensandbox";
// 1. Basic configuration
const config = new ConnectionConfig({
domain: "api.opensandbox.io",
apiKey: "your-key",
requestTimeoutSeconds: 60,
});
// 2. Advanced: custom headers
const config2 = new ConnectionConfig({
domain: "api.opensandbox.io",
apiKey: "your-key",
headers: { "X-Custom-Header": "value" },
});2. Sandbox Creation Configuration
Sandbox.create() allows configuring the sandbox environment.
| Parameter | Description | Default |
| ---------------------------- | ------------------------------------------------ | ---------------------------- |
| image | Docker image to use | Required |
| timeoutSeconds | Automatic termination timeout (server-side TTL) | 10 minutes |
| entrypoint | Container entrypoint command | ["tail","-f","/dev/null"] |
| resource | CPU and memory limits (string map) | {"cpu":"1","memory":"2Gi"} |
| env | Environment variables | {} |
| metadata | Custom metadata tags | {} |
| networkPolicy | Optional outbound network policy (egress) | - |
| credentialProxy | Optional Credential Vault proxy startup settings | - |
| extensions | Extra server-defined fields | {} |
| skipHealthCheck | Skip readiness checks (Running + health check) | false |
| healthCheck | Custom readiness check | - |
| readyTimeoutSeconds | Max time to wait for readiness | 30 seconds |
| healthCheckPollingInterval | Poll interval while waiting (milliseconds) | 200 ms |
| signal | Abort creation and readiness requests | - |
Note: metadata keys under opensandbox.io/ are reserved for system-managed
labels and will be rejected by the server.
const sandbox = await Sandbox.create({
connectionConfig: config,
image: "python:3.11",
networkPolicy: {
defaultAction: "deny",
egress: [{ action: "allow", target: "pypi.org" }],
},
});3. Runtime Egress Policy Updates
Runtime egress reads and patches go directly to the sandbox egress sidecar.
The SDK first resolves the sandbox endpoint on port 18080, then calls the sidecar /policy API.
Patch uses merge semantics:
- Incoming rules take priority over existing rules with the same
target. - Existing rules for other targets remain unchanged.
- Within a single patch payload, the first rule for a
targetwins. - The current
defaultActionis preserved.
const policy = await sandbox.getEgressPolicy();
await sandbox.patchEgressRules([
{ action: "allow", target: "www.github.com" },
{ action: "deny", target: "pypi.org" },
]);4. Credential Vault
Credential Vault injects outbound credentials from the egress sidecar while
keeping real secrets out of sandbox environment variables, commands, files, and
logs. Create the sandbox with credentialProxy enabled, then write credentials
and bindings through sandbox.credentialVault.
const sandbox = await Sandbox.create({
connectionConfig: config,
image: "python:3.11",
networkPolicy: {
defaultAction: "deny",
egress: [{ action: "allow", target: "api.example.com" }],
},
credentialProxy: { enabled: true },
});
await sandbox.credentialVault.create({
credentials: [{ name: "api-token", source: { value: "<token>" } }],
bindings: [
{
name: "api-token",
match: {
schemes: ["https"],
hosts: ["api.example.com"],
paths: ["/v1/*"],
},
auth: { type: "apiKey", name: "x-api-key", credential: "api-token" },
},
],
});See Credential Vault for auth types, binding guidance, and Git/curl examples.
5. Resource cleanup
Both Sandbox and SandboxManager own a scoped HTTP agent when running on Node.js
so you can safely reuse the same ConnectionConfig. Once you are finished interacting
with the sandbox or administration APIs, call sandbox.close() / manager.close() to
release the underlying agent.
Browser Notes
- The SDK can run in browsers, but streaming file uploads are Node-only.
- If you pass
ReadableStreamorAsyncIterableforwriteFiles, the browser will fall back to buffering in memory before upload. - Reason: browsers do not support streaming
multipart/form-databodies with custom boundaries (required by the execd upload API).
