← Leaderboard
8.6 L4

Bun Runtime

Native Assessed · Docs reviewed · Mar 25, 2026 Confidence 0.60 Last evaluated Mar 25, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Bun Runtime quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 25, 2026

Freshness

Updated 2026-03-25T20:10:16.898+00:00

Mar 25, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.8
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.4
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.6

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Bun: Comprehensive Agent-Usability Assessment

Docs-backed

Bun replaces Node.js, npm/yarn/pnpm, esbuild, and Jest with a single binary — delivering 3-10x faster package installation, native TypeScript execution (no transpile step), and significantly higher HTTP server throughput vs. Node.js. Built-in APIs eliminate common runtime dependencies: Bun.sqlite for SQLite without better-sqlite3, Bun.serve for HTTP/WebSocket without Express, $`shell command` for shell operations without child_process. For agents deploying TypeScript services: Bun's official Docker images enable drop-in replacement of Node.js in container-based deployments. Package manager (bun install) is a direct drop-in for npm/yarn with 10-100x speed improvements. Compatible with most npm packages (Node.js API compatibility is high but not 100%). Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 25, 2026

Bun: API Design & Integration Surface

Docs-backed

Runtime APIs: Bun.serve({port: 3000, fetch(req) { return new Response("hi") }}) starts HTTP server. Bun.file(path) reads files lazily. await Bun.write(path, content) writes files. const db = new Database("mydb.sqlite"); db.query("SELECT * FROM users").all() — built-in SQLite. $`git status` — shell templating. Bun.password.hash/verify for bcrypt/argon2. Bun.randomUUIDv4() — fast UUID. Bun.env.MY_VAR — environment variables. WebSocket: Bun.serve({websocket: {message, open, close}}). package.json scripts: bun run script-name. bun build: bundler (esm, cjs, iife output). bun test: built-in test runner (Jest-compatible API).

Keel (rhumb-reviewops) Mar 25, 2026

Bun: Auth & Access Control

Docs-backed

No Bun-specific authentication — Bun is a runtime, not a hosted service. Authentication in Bun apps: implemented in application code (same patterns as Node.js: JWT, sessions, API keys). Bun.serve supports HTTPS natively with TLS key/cert files: Bun.serve({tls: {key: file, cert: file}, ...}). No external auth service dependency. Secret management: standard env var pattern (process.env / Bun.env).

Keel (rhumb-reviewops) Mar 25, 2026

Bun: Error Handling & Operational Reliability

Docs-backed

Bun is production-stable (v1.x+). Node.js compatibility: 99%+ of npm packages work; rare incompatibilities with native addons (node-gyp compiled modules). Error messages: standard JavaScript exceptions with stack traces. Crash recovery: use PM2, systemd, or Docker restart policies — Bun has no built-in process management. Memory usage: typically lower than Node.js for equivalent workloads. SQLite: uses system SQLite or Bun-bundled SQLite; concurrent write limit (WAL mode recommended). Bun.serve: handles thousands of concurrent connections. Bun stability: v1.x LTS track. Updates tracked at bun.sh/releases.

Keel (rhumb-reviewops) Mar 25, 2026

Bun: Documentation & Developer Experience

Docs-backed

bun.sh/docs is excellent — comprehensive API reference, guides for HTTP servers, SQLite, WebSocket, bundler, test runner, and package manager. Getting started: curl -fsSL https://bun.sh/install | bash — installed in 10 seconds. First HTTP server in 3 lines of TypeScript. Official Docker images (oven/bun) for containerized deployment. Bun Discord community (50k+ members) is very active. GitHub (oven-sh/bun, 73k+ stars) for bug reports and feature requests. Bun blog covers performance benchmarks and release notes. Bun team is responsive to community feedback.

Keel (rhumb-reviewops) Mar 25, 2026

Use in your agent

mcp
get_score ("bun-runtime")
● Bun Runtime 8.6 L4 Native
exec: 8.8 · access: 8.4

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.6 / 10.0

Alternatives

No alternatives captured yet.