@cloudflare/sandbox@0.10.2
·
121 commits
to main
since this release
Patch Changes
-
#695
c6bf7dcThanks @aron-cf! - Addsandbox.tunnelsnamespace with quick-tunnel support. Callsandbox.tunnels.get(port)to obtain ahttps://<words>.trycloudflare.comURL that proxies tolocalhost:<port>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)
-
#691
3ca24fcThanks @scuffi! - Add credential-less R2 bucket mounting via egress interception -
#703
68c8b71Thanks @aron-cf! - Fix inconsistencies in the sandbox.desktop interface between RPC and HTTP transports