Sandbox Docs Overview
Everything related to sandboxing now lives in this single structured docs section.
Getting Started
Install, create a sandbox, execute code, and verify health.
TypeScript SDK
SDK object model, initialization, and error handling patterns.
API Reference
Health, execute, sandbox session APIs, and common error codes.
Security Model
Isolation principles, controls, and operating recommendations.
Quick Start Preview
1import { UnikernelsClient } from "unikernel-sandbox";
2
3const client = new UnikernelsClient();
4const sandbox = await client.createSandbox();
5const result = await sandbox.execute({
6 language: "python",
7 code: "print('hello from sandbox')",
8});
9await sandbox.delete();