npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@sandbox-workers/javascript

v0.2.0

Published

Deployable SpiderMonkey (goccy/spidermonkey-wasm) WebAssembly sandbox for Cloudflare Workers Service Bindings

Readme

@sandbox-workers/javascript

Deploy to Cloudflare

Use the source template as an alternative to the npm package. It creates a private Worker; configure your caller’s Service Binding after deployment. The source repository must be public for the button to work.

A Cloudflare Workers Service Binding runtime containing SpiderMonkey (Firefox 147) compiled to Wasm via goccy/spidermonkey-wasm v0.2.6.

Quick start

pnpm dlx @sandbox-workers/cli init javascript my-javascript
cd my-javascript
pnpm install
pnpm run dry-run
pnpm run deploy

Before publication, install the local tarball produced by the repository's pnpm run pack.

The initializer refuses to overwrite existing files. Choose a Worker name in wrangler.javascript.jsonc that fits your account. Public URLs are disabled.

Existing Worker project

Use this entrypoint in a dedicated Worker:

export { default, Interpreter } from "@sandbox-workers/javascript";

Disable workers_dev and preview_urls, deploy the runtime, and add a Service Binding to the calling application's configuration:

{ "services": [{ "binding": "JAVASCRIPT", "service": "sandbox-javascript" }] }

The service name must match the deployed Worker. Install @sandbox-workers/core in the calling application for stateless, one-shot execution:

import { runCode } from "@sandbox-workers/core";
const result = await runCode(
  env.JAVASCRIPT,
  "const x = Number(process.env.X);\nx ** 2",
  { envVars: { X: "12" } },
);

Or use env.JAVASCRIPT.fetch(new Request('https://sandbox.internal/execute', ...)) with a JSON POST body { "code": "42" }. Both Workers must be deployed in your own Cloudflare account. A Service Binding is to a deployed Worker name; installing this npm package alone does not create it. For local development run both Wrangler projects, or pass both -c configs to one wrangler dev command.

This package's INTERPRETER Durable Object binding (Interpreter, already in this Worker's wrangler.javascript.jsonc) is what backs durable, stateful code contexts (globals persist across calls). To use them, your own Worker (not this one) hosts a Sandbox Durable Object from @sandbox-workers/core and opens contexts bound to this Worker by name, instead of the stateless runCode above:

// your wrangler.jsonc
{
  "durable_objects": { "bindings": [{ "name": "Sandbox", "class_name": "Sandbox" }] },
  "migrations": [{ "tag": "v1", "new_sqlite_classes": ["Sandbox"] }],
  "services": [{ "binding": "JAVASCRIPT", "service": "sandbox-javascript" }]
}
// your Worker's entry
export { Sandbox } from "@sandbox-workers/core";
import { getSandbox } from "@sandbox-workers/core";

const sandbox = getSandbox(env.Sandbox, "user-42");
const ctx = await sandbox.interpreter.createCodeContext({ binding: "JAVASCRIPT" });
await sandbox.interpreter.runCode("counter = 1", { context: ctx });
await sandbox.interpreter.runCode("counter += 1; counter", { context: ctx }); // 2

See the sandboxes and code contexts guide for the full client API, the files API, and per-language REPL semantics.

Execution contract

POST /execute accepts {code, envVars}. This runtime Worker always executes JavaScript; the runtime is chosen by the Service Binding, not by the request, and a request that still carries a language key is rejected. Code is a script: the value of the last top-level expression is the result; a top-level return is a guest SyntaxError. Data is passed with envVars (string values only) and read as process.env.NAME. console.log/info/debug calls are captured into logs.stdout, warn/error into logs.stderr, with one trailing newline stripped per entry. Results serialize as {text} or {json}; BigInt values become a string ending in n, and an undefined result produces an empty results array.

Each execution creates a fresh Wasm instance: there is no state shared between requests, and each request evaluates a fresh SpiderMonkey global. Every execution — success, guest error, or a fuel/console/result limit — returns HTTP 200 with {code, language, engine, durationMs, logs, results, error?, usage?}; check the error field (error.name is ExecutionLimitError for limits, EngineError for engine failures) through the shared client. Only request/transport problems (bad JSON, an input/language key, wrong method, oversized payload, wrong content type) use non-200 statuses.

This engine has no Web APIs: there is no fetch, URL, Response, TextEncoder, structuredClone, atob, timers (setTimeout), or WebAssembly. A pending promise that never settles (because there is nothing to wait on) is reported as a guest error rather than hanging the request. Intl (e.g. Intl.NumberFormat, Intl.DateTimeFormat, Intl.Collator) is available and backed by real ICU data. SharedArrayBuffer and Atomics are removed before guest code runs.

TypeScript is also accepted automatically: there is no language option and no separate mode. Code is parsed as JavaScript first, so valid JavaScript never changes meaning (e.g. a < b > (c) stays a comparison, never a generic call); only code that fails to parse as JavaScript falls back to stripping TypeScript-only syntax (type annotations, interface, generics, as/satisfies, enum, namespace, parameter properties) before running. Types are stripped, not checked, so a type error still runs and returns a result, like any other JavaScript mistake; a real TypeScript syntax error is reported as a guest SyntaxError. ES-module import/export remain unsupported in both dialects.

Every execution creates a fresh Wasm instance; no context persists between calls. Fuel bounds the interpreter to 50,000,000 ticks via an interrupt request rather than a trap, so it stays catchable inside the guest; the linear memory maximum is 64 MiB, with a 32 MiB heap cap enforced by the engine itself. Code is limited to 64 KiB, request to 96 KiB and the serialized result to 64 KiB. Console capture is bounded to 200 entries / 32,768 UTF-16 code units combined across stdout/stderr. CPU/isolate overhead and concurrent memory use still need to fit Cloudflare's separate resource limits.

This is an experimental runtime, not a claim of full Test262 conformance or a production security audit. The demo is independent of your deployment. See THIRD_PARTY_NOTICES.md for the embedded runtime licenses and source references.