cloudflare/sandbox-sdk @cloudflare/sandbox@0.10.2
cloudflare/sandbox-sdk
Captured source
source ↗published May 21, 2026seen 5dcaptured 8hhttp 200method plain
@cloudflare/sandbox@0.10.2
Repository: cloudflare/sandbox-sdk
Tag: @cloudflare/sandbox@0.10.2
Published: 2026-05-21T14:15:03Z
Prerelease: no
Release notes:
Patch Changes
- #695 `c6bf7dc` Thanks @aron-cf! - Add
sandbox.tunnelsnamespace with quick-tunnel support. Callsandbox.tunnels.get(port)to obtain ahttps://.trycloudflare.comURL that proxies tolocalhost:inside the sandbox. The call is idempotent: repeated calls for the same port return the same record from per-sandbox Durable Object storage. No Cloudflare account or DNS setup required.
const tunnel = await sandbox.tunnels.get(8080); console.log(tunnel.url); // → https://random-words-here.trycloudflare.com const same = await sandbox.tunnels.get(8080); console.log(same.url === tunnel.url); // true await sandbox.tunnels.list(); await sandbox.tunnels.destroy(8080); // or destroy(tunnel)
Notability
notability 2.0/10Minor SDK release, no notable traction