
AI visibility report
AI visibility report for Bun in Open Source Commercial / OSS Infrastructure.
Outside the top three on 13 of the 25 prompts buyers actually ask.
Deno is cited on 5 of those losses.
Free trial. Setup comes pre-filled for Bun.
Track Bun across these prompts daily.
Start free trialStill absent from 98.7% of tracked prompt responses
Top-3 citations across 150 prompt × platform pairs
Peer Ranking
Key Metrics
Platform Breakdown
How to read this. Bun appears in 1.3% of tracked prompt responses. Presence is absolute coverage; share of voice is relative citation share; sentiment measures tone only when the brand appears.
Where Bun is losing
Prompts where competitors are visible and Bun is not.
These prompt-level losses are the first prompts to track and repair.
Where Bun is winning
No clear strengths identified yet.
Where Bun is losing5
Which durable workflow platforms handle fan-out patterns well — which ones can spawn thousands of parallel child workflows and aggregate results without hitting limits?
Competitors on 3 platforms
Track this promptWhich lightweight JS runtimes have the best memory efficiency compared to Node.js — does the difference matter enough for cost optimization in containerized deployments?
Competitors on 3 platforms
Track this promptWhat durable workflow platforms have the best debugging experience for failed mid-execution jobs — which ones surface errors clearly and support smart retries?
Competitors on 2 platforms
Track this promptWhich type-safe API frameworks integrate best with popular frontend data-fetching libraries — which ones give you full end-to-end type safety without extra code generation?
Competitors on 1 platform
Track this promptWhat are the best JavaScript runtimes for migrating an existing Node.js app — which ones have the fewest compatibility gotchas on day one?
Competitors on 1 platform
Track this prompt
Track Bun daily before the next report refresh.
Track these gapsResearch dossierCapabilities, use cases, sources, reviews, pricing, and FAQ
Overview
Bun is an open-source, all-in-one JavaScript and TypeScript toolkit developed by Oven (acquired by Anthropic in December 2025). Built in the Zig programming language and powered by Apple's JavaScriptCore engine, Bun consolidates a runtime, package manager, bundler, and test runner into a single binary. It is designed as a drop-in replacement for Node.js, offering substantially faster startup times, package installs up to 30x quicker than npm, and HTTP throughput roughly 3x that of Node.js. Released publicly in 2021 and reaching stable 1.0 in September 2023, Bun is MIT-licensed and maintained openly on GitHub. Following its acquisition by Anthropic, Bun now serves as the runtime infrastructure for Claude Code and the Claude Agent SDK, while remaining a general-purpose JavaScript runtime with over 7 million monthly downloads.
Bun is a fast, all-in-one JavaScript and TypeScript toolkit comprising a runtime (drop-in Node.js replacement built on JavaScriptCore), an npm-compatible package manager, a bundler, and a Jest-compatible test runner—all shipped as a single binary. Written in Zig, it emphasizes speed (3x faster HTTP than Node.js, 30x faster package installs than npm), developer experience (zero-config TypeScript/JSX, built-in database/Redis/S3 clients), and incremental adoptability in existing Node.js projects. Acquired by Anthropic in December 2025, Bun powers Claude Code and is positioned as essential infrastructure for AI-driven software development workflows.
Key Facts
- Founded
- 2021
- HQ
- San Francisco, USA
- Founders
- Jarred Sumner
- Employees
- 11-50
- Funding
- $26M
- Status
- Acquired (Anthropic, December 2025)
Target users
Key Capabilities10
- High-performance JavaScript/TypeScript runtime built on JavaScriptCore (WebKit), starting 3x faster than Node.js
- All-in-one toolkit: runtime, package manager (bun install, up to 30x faster than npm), test runner, and bundler in a single binary
- Zero-config TypeScript, JSX, and React support out of the box
- Jest-compatible test runner (bun test) with snapshot testing, code coverage, and VS Code integration
- Fast bundler with tree-shaking, CSS bundling, HMR, and single-file executable compilation (bun build --compile)
- Built-in HTTP server (Bun.serve) with WebSocket pub/sub, routing, and cookie APIs
- Native database clients: PostgreSQL, MySQL, SQLite, and Redis without third-party drivers
- Built-in S3-compatible object storage client (Bun.s3)
- Cross-platform shell scripting API (Bun.$) and FFI for calling native C/C++ libraries
- Node.js drop-in compatibility targeting full API parity with Node.js
Key Use Cases7
- Replacing Node.js as the server-side JavaScript runtime for performance-sensitive applications
- Accelerating CI/CD pipelines via fast package installs and test execution
- Building and distributing CLI tools as self-contained single-file executables (e.g., Claude Code)
- Full-stack JavaScript/TypeScript development with zero-config bundling and HMR dev server
- Running AI agent workloads and AI coding tool infrastructure
- Monorepo and workspace management as a drop-in npm/pnpm replacement
- WebSocket-intensive real-time applications (e.g., image generation notification systems)
Bun customer outcomes
Midjourney uses Bun's built-in WebSocket server to publish image generation notifications at scale, citing performance and scalability advantages.
Claude Code ships as a Bun single-file executable to millions of users, leveraging Bun's fast startup times and self-contained binary format for CLI distribution.
Railway powers its Railway Functions serverless product with Bun's all-in-one toolkit, using it to deliver fast and easy-to-use serverless JavaScript functions.
Recent Trend
How AI describes Bun3
The two primary alternative JavaScript runtimes challenging Node.js are Bun and Deno . Both offer distinct approaches to file system (FS) and native API access, shifting away from Node’s legacy C++ `libuv` architecture toward modern paradigms.
What are the best JavaScript runtimes for migrating an existing Node.js app — which ones have the fewest compatibility gotchas on day one?
When looking at modern alternative JavaScript runtimes like Bun and Deno compared to Node.js , the headline performance numbers can look dramatic.
What commercial OSS infrastructure projects offer the best enterprise support model — which ones have reliable SLAs when the open-source community can't respond fast enough?
Hono RPC (The Ultralight, Multi-Runtime Challenger) Hono is a blazing-fast, lightweight web framework designed for edge runtimes (Cloudflare Workers, Deno, Bun) that includes a powerful RPC mode via `hono/client` (Eden).
Which WASM-based serverless platforms have the best cold start performance compared to container-based functions — is the latency improvement meaningful for production?
Most cited sources2
Alternatives in Open Source Commercial / OSS Infrastructure6
Bun positions as the fastest all-in-one JavaScript and TypeScript toolkit, directly targeting Node.js replacement.
- It differentiates on raw benchmark performance (3x faster HTTP than Node, 30x faster package installs, 5-20x faster test runs), zero-config TypeScript/JSX support, and consolidation of four separate tools—runtime, package manager, bundler, and test runner—into a single binary.
- Unlike Deno, which emphasizes security sandboxing, Bun prioritizes Node.js drop-in compatibility and speed above all else.
- Following its December 2025 acquisition by Anthropic, Bun has repositioned as critical AI-era infrastructure, powering Claude Code and the Claude Agent SDK.
Reviews
Praised
- Dramatically faster package install speeds vs npm/yarn
- Fast runtime startup and HTTP throughput benchmarks
- Zero-config TypeScript and JSX support
- All-in-one convenience (one tool replaces Node + npm + Jest + esbuild)
- Rapid release cadence and responsive bug fixes
- Built-in database clients (PostgreSQL, Redis, SQLite) with no extra dependencies
- Single-file executable compilation for CLI distribution
Criticized
- Incomplete Node.js API compatibility for less-common modules
- No built-in security sandbox (unlike Deno's permission model)
- No built-in linter or formatter
- Windows support lagged and historically less stable
- Zig-based codebase less mature than Node.js for edge-case production use
- Uncertainty about long-term roadmap post-Anthropic acquisition
Bun does not have a significant presence on formal review platforms such as G2 or Gartner Peer Insights. Developer sentiment expressed on GitHub (87.9k stars), social media, and developer communities is strongly positive, particularly around installation speed, startup performance, TypeScript ergonomics, and the all-in-one convenience. Critical commentary centers on incomplete Node.js compatibility for niche APIs, the absence of a built-in security sandbox, and historically rougher Windows support.
Pricing
Bun is free and fully open-source under the MIT license. There is no paid tier, commercial license, or hosted service offering. The project had zero revenue at the time of its December 2025 acquisition by Anthropic.
Limitations
- Bun does not yet achieve 100% Node.js API compatibility; some edge cases in less-common Node.js APIs still fail.
- Unlike Deno, Bun has no built-in permission/security sandbox, inheriting Node.js's permissive model.
- Bun has no built-in linter or formatter (Deno ships both).
- Windows support was added late (v1.1, April 2024) and historically lagged behind Linux/macOS.
- The Zig-based codebase is younger and less battle-hardened than Node.js for production-critical edge cases.
- As an Anthropic subsidiary post-acquisition, long-term roadmap alignment with non-AI use cases may shift over time.
Frequently asked questions
Topic coverageCoverage by buyer topic
Topic Coverage
Prompt-Level Results
| Prompt | ||||||
|---|---|---|---|---|---|---|
Capability0/5 cited (0%) | ||||||
What are the real limitations of WebAssembly runtimes for server workloads — which types of applications are not a good fit for WASM-based deployment? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which durable workflow platforms handle fan-out patterns well — which ones can spawn thousands of parallel child workflows and aggregate results without hitting limits? | Neither your brand nor a competitor was cited | A competitor was cited | A competitor was cited | A competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited |
Which alternative JavaScript runtimes offer the best file system and native API access compared to Node.js — where do the gaps matter most for real apps? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
I'm evaluating web-based desktop app frameworks versus native UI toolkits — which ones get closest to native performance and OS integration? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which lightweight SSR web frameworks can handle complex auth flows, middleware chains, and database access without handing off to a separate backend? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Developer Experience1/5 cited (20%) | ||||||
What durable workflow platforms have the best debugging experience for failed mid-execution jobs — which ones surface errors clearly and support smart retries? | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which schema validation libraries work well across both frontend forms and backend API validation — which ones let you share schemas without duplication? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which lightweight edge server-side frameworks have the fastest hot-reload and local iteration cycle — is the feedback loop noticeably better than traditional Node.js? | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Your brand and a competitor were cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
What are the best edge-first web frameworks compared to traditional SSR frameworks — how do they differ on routing, data loading, and deployment experience? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which alternative JavaScript runtimes have the best npm ecosystem compatibility — which ones let you use existing packages without frequent incompatibilities? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Integrations & Ecosystem1/5 cited (20%) | ||||||
What tools help evaluate the long-term sustainability of OSS infrastructure projects — how do you assess risk when the commercial company behind one pivots or gets acquired? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which durable workflow platforms integrate best with event-driven architectures — which ones let you trigger workflows from message queues and publish results back to a stream? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which type-safe API frameworks integrate best with popular frontend data-fetching libraries — which ones give you full end-to-end type safety without extra code generation? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which modern OSS web frameworks support the most deployment targets — edge runtimes, containers, and serverless functions without major code changes? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which alternative JavaScript runtimes have the most mature ecosystems — which ones have production-ready database drivers, ORMs, and observability libraries? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Your brand and a competitor were cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Performance & Reliability0/5 cited (0%) | ||||||
What commercial OSS infrastructure projects offer the best enterprise support model — which ones have reliable SLAs when the open-source community can't respond fast enough? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which durable workflow platforms perform best under high throughput — which ones scale past the bottlenecks when you need thousands of workflow executions per second? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which WASM-based serverless platforms have the best cold start performance compared to container-based functions — is the latency improvement meaningful for production? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which lightweight JS runtimes have the best memory efficiency compared to Node.js — does the difference matter enough for cost optimization in containerized deployments? | Neither your brand nor a competitor was cited | A competitor was cited | A competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which modern alternative JavaScript runtimes are actually faster than Node.js for HTTP server workloads — what do realistic benchmarks show? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Setup & First Run0/5 cited (0%) | ||||||
What are the best type-safe end-to-end API frameworks for TypeScript — which ones give you autocomplete and validation across the stack with minimal boilerplate? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
What are the best JavaScript runtimes for migrating an existing Node.js app — which ones have the fewest compatibility gotchas on day one? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
I'm evaluating durable workflow and background job orchestration platforms — which ones require the least infrastructure to get your first workflow running? | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Which frameworks let you package a web app as a native desktop app using web technologies — how do they handle Windows and Linux build differences? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
What WASM runtimes support deploying serverless functions in production — which platforms cover the full path from writing a function to running it at the edge? | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited | A competitor was cited | Neither your brand nor a competitor was cited | Neither your brand nor a competitor was cited |
Turn this matrix into daily prompt monitoring.
Track prompt changesVertical Ranking
| # | Brand | PresencePres. | Share of VoiceSoV | DocsDocs | BlogBlog | MentionsMent. | Avg PosPos | Sentiment |
|---|---|---|---|---|---|---|---|---|
| 1 | Temporal | 6.7% | 31.5% | 3.3% | 0.7% | 16.7% | #4.2 | +0.50 |
| 2 | Deno | 5.3% | 20.4% | 3.3% | 2.0% | 0.0% | #2.9 | +0.46 |
| 3 | Hono | 3.3% | 9.3% | 3.3% | 0.0% | 16.0% | #4.0 | +0.66 |
| 4 | Inngest | 2.0% | 14.8% | 1.3% | 0.0% | 7.3% | #6.0 | +0.85 |
| 5 | tRPC | 1.3% | 3.7% | 0.0% | 0.0% | 10.0% | #2.5 | +0.80 |
| 6 | Bun | 1.3% | 3.7% | 1.3% | 0.0% | 0.0% | #3.0 | +0.80 |
| 7 | Fermyon | 1.3% | 13.0% | 0.0% | 0.7% | 0.0% | #7.3 | +0.75 |
| 8 | Zod | 0.7% | 1.9% | 0.0% | 0.0% | 8.7% | #1.0 | +0.70 |
| 9 | Tauri | 0.7% | 1.9% | 0.0% | 0.0% | 6.0% | #5.0 | +0.20 |
| 10 | Astro | 0.0% | 0.0% | 0.0% | 0.0% | 0.0% | — | — |
| 11 | Remix | 0.0% | 0.0% | 0.0% | 0.0% | 6.0% | — | — |
| 12 | Wasmer | 0.0% | 0.0% | 0.0% | 0.0% | 2.7% | — | — |
Turn this into your team dashboard
Sign up to unlock project-level analytics, daily tracking, actionable insights, custom prompt configurations, adoption tracking, AI traffic analytics and more.
Free trial. Setup comes pre-filled from this report.