Bun 被 Anthropic 收购了。
Anthropic acquires Bun

原始链接: https://bun.com/blog/bun-joins-anthropic

## Bun 被 Anthropic 收购:助力人工智能编码的未来 Bun,一种快速、一体化的 JavaScript 运行时、打包器和包管理器,已被人工智能安全和研究公司 Anthropic 收购。此举将 Bun 定位为 Anthropic 人工智能编码工具(如 Claude Code 和 Claude Agent SDK)的核心基础设施,确保项目的长期稳定和资源。 尽管被收购,Bun 将**保持开源和 MIT 许可**,继续在 GitHub 上进行公开开发,并由相同的核心团队领导。路线图将继续优先考虑性能、Node.js 兼容性以及作为潜在 Node.js 替代品的地位。 Anthropic 的投资源于 Bun 的成功——拥有超过 720 万的月度下载量——以及其理想的架构,可用于分发人工智能驱动的 CLI 工具。这种合作使 Bun 可以跳过传统的创业公司变现路径,并专注于创新,尤其是在快速发展的人工智能辅助软件开发领域。最终,Anthropic 认为 Bun 对于未来至关重要,在未来人工智能代理将以前所未有的规模编写和测试代码。

## Bun 被 Anthropic 收购 快速 JavaScript 运行时 Bun 已被 AI 公司 Anthropic 收购。 这次收购在令人惊讶的透明博客文章中详细说明,引发了关于其背后的原因的争论。 一些人质疑 AI 公司为何需要 JS 运行时,而另一些人则认为 Anthropic 旨在控制整个代码开发平台,预计未来 AI 将生成大部分代码。 讨论的中心在于这是否为 Bun 提供了“长期稳定性”,或者将其命运与动荡的 AI 行业绑定在一起。 许多评论员强调了 Bun 的成功——特别是其 Node.js 兼容性和性能改进——并希望此次收购将支持其持续的开源开发。 Anthropic 基于 Bun 构建的 CLI 工具 Claude Code 也是一个关键因素,一些人推测其成功推动了这笔交易。 收购价格未知,但估计值差异很大。 总体而言,社区反应谨慎乐观,庆祝 Bun 团队的成就,同时也承认了未来的不确定性。
相关文章

原文

TLDR: Bun has been acquired by Anthropic. Anthropic is betting on Bun as the infrastructure powering Claude Code, Claude Agent SDK, and future AI coding products & tools.

What doesn't change:

  • Bun stays open-source & MIT-licensed
  • Bun continues to be extremely actively maintained
  • The same team still works on Bun
  • Bun is still built in public on GitHub
  • Bun's roadmap will continue to focus on high performance JavaScript tooling, Node.js compatibility & replacing Node.js as the default server-side runtime for JavaScript

Claude Code ships as a Bun executable to millions of users. If Bun breaks, Claude Code breaks. Anthropic has direct incentive to keep Bun excellent.

What changes:

  • We will help make coding tools like Claude Code & Claude Agent SDK faster & smaller
  • We get a closer first look at what's around the corner for AI coding tools, and make Bun better for it
  • Bun will ship faster.

Almost five years ago, I was building a Minecraft-y voxel game in the browser. The codebase got kind of large, and the iteration cycle time took 45 seconds to test if changes worked. Most of that time was spent waiting for the Next.js dev server to hot reload.

This was frustrating, and I got really distracted trying to fix it.

I started porting esbuild's JSX & TypeScript transpiler from Go to Zig. Three weeks later, I had a somewhat working JSX & TypeScript transpiler.

I spent much of that first year in a very cramped apartment in Oakland, just coding and tweeting about Bun.

The runtime

To get Next.js server side rendering to work, we needed a JavaScript runtime. And JavaScript runtimes need an engine to interpret & JIT compile the code.

So after about a month of reading WebKit's source code trying to figure out how to embed JavaScriptCore with the same flexibility as what Safari does, I had the very initial version of Bun's JavaScript runtime.

Bun v0.1.0

Bun v0.1.0 was released in July of 2022. A bundler, a transpiler, a runtime (designed to be a drop-in replacement for Node.js), test runner, and a package manager - all in one. We ended up reaching 20k GitHub stars in the first week.

Those first two weeks after the release were one of the craziest weeks of my life. My job switched from writing code all day to replying to people all day. We raised a $7 million seed round led by Kleiner Perkins (thanks Bucky & Leigh Marie! And also Shrav Mehta), I took a salary and convinced a handful of engineers to move to San Francisco and help build Bun.

Bun v1.0.0

Bun started to feel more stable, so we shipped Bun v1.0 in September of 2023.

Production usage started to pick up and we raised a $19 million Series A led by Khosla Ventures (thanks Nikita & Jon!), grew the team to 14 people and got a slightly larger office.

Bun v1.1

After all this time, we still didn't have Windows support. And every day, people asked us the same question: "when will Bun support Windows?"

So we added Windows support and called it Bun v1.1. Our Windows support was pretty rough at first, but we've made a lot of progress since then.

Bun v1.2

Bun v1.2 made big improvements to Node.js compatibility, added a builtin PostgreSQL client and S3 client. We also started seeing production usage from companies like X and Midjourney. Tailwind's standalone CLI is built with Bun.

Bun v1.3

Bun v1.3 added a builtin frontend dev server, a Redis client, a MySQL client, several improvements to bun install and improved Node.js compatibility. The real feature: continued increasing production usage.

AI started to get good

In late 2024, AI coding tools went from "cool demo" to "actually useful." And a ton of them are built with Bun.

Bun's single-file executables turned out to be perfect for distributing CLI tools. You can compile any JavaScript project into a self-contained binary—runs anywhere, even if the user doesn't have Bun or Node installed. Works with native addons. Fast startup. Easy to distribute.

Claude Code, FactoryAI, OpenCode, and others are all built with Bun.

I got obsessed with Claude Code

I started using Claude Code myself. I got kind of obsessed with it.

Over the last several months, the GitHub username with the most merged PRs in Bun's repo is now a Claude Code bot. We have it set up in our internal Discord and we mostly use it to help fix bugs. It opens PRs with tests that fail in the earlier system-installed version of Bun before the fix and pass in the fixed debug build of Bun. It responds to review comments. It does the whole thing.

This feels approximately a few months ahead of where things are going. Certainly not years.

The road ahead

Today, Bun makes $0 in revenue.

One of the most common questions I get is about sustainability. Questions like:

"How does Bun become a business?"

"If I bet my work project or company's tech stack on Bun, will it still be around in five or ten years?"

Our default answer was always some version of "we'll eventually build a cloud hosting product.", vertically integrated with Bun’s runtime & bundler.

But the world when I first started working on Bun is different from the world today. AI coding tools are this massive change to how developers do productive work, and the infrastructure layer matters more when agents are writing code.

Forcing ourselves down the prescribed path felt wrong when AI coding tools are getting this good, this fast.

The walk

We've been prioritizing issues from the Claude Code team for several months now. I have so many ideas all the time and it's really fun. Many of these ideas also help other AI coding products.

A few weeks ago, I went on a four hour walk with Boris from the Claude Code team. We talked about Bun. We talked about where AI coding is going. We talked about what it would look like for Bun's team to join Anthropic. Then we did that about 3 more times over the next few weeks. Then I did that with many of their competitors. I think Anthropic is going to win.

Betting on Anthropic sounded like a more interesting path. To be in the center of things. To work alongside the team building the best AI coding product.

This is a little bit crazy

At the time of writing, Bun's monthly downloads grew 25% last month (October, 2025), passing 7.2 million monthly downloads. We had over 4 years of runway to figure out monetization. We didn't have to join Anthropic.

Instead of putting our users & community through "Bun, the VC-backed startups tries to figure out monetization" – thanks to Anthropic, we can skip that chapter entirely and focus on building the best JavaScript tooling.

Why this makes sense

When people ask "will Bun still be around in five or ten years?", answering with "we raised $26 million" isn't a great answer. Investors eventually need a return.

But there's a bigger question behind that: what does software engineering even look like in two to three years?

AI coding tools are getting really good, really fast and they're using Bun’s single-file executables to ship CLIs and agents that run everywhere.

If most new code is going to be written, tested, and deployed by AI agents:

  • The runtime and tooling around that code become way more important.
  • You get a lot more code overall, written & tested a lot faster.
  • Humans are more detached from every individual line, so the environment it runs in has to be fast and predictable

Bun started with a focus on making developers faster. AI coding tools do a similar thing. It’s a natural fit.

Bun joins Anthropic

So that's why we're joining Anthropic.

Anthropic is investing in Bun as the infrastructure powering Claude Code, Claude Agent SDK, and future AI coding products. Our job is to make Bun the best place to build, run, and test AI-driven software — while continuing to be a great general-purpose JavaScript runtime, bundler, package manager, and test runner.

Being part of Anthropic gives Bun:

  • Long-term stability. a home and resources so people can safely bet their stack on Bun.
  • A front-row seat to where AI coding tools are headed, so we can shape Bun around that future instead of guessing from the outside.
  • More firepower. We’re hiring engineers.

And for existing users, the core promise stays the same:

  • Bun remains open-source & MIT-licensed.
  • Bun is still built in public.
  • The same team still works on Bun.
  • We’re still obsessed with making JavaScript and TypeScript faster to install, build, run and test.

Anthropic gets a runtime that’s aligned with where software development is going. We get to work on the most interesting version of that future.

This is going to be really fun.

Q: Is Bun still open-source & MIT-licensed?
A: Yes.

Q: Will Bun still be developed in public on GitHub?
A: Yes. We’ll still be extremely active on GitHub issues & pull requests.

Q: Does Bun still care about Node.js compatibility & being a drop-in replacement for Node.js?
A: Yes.

Q: Is the same team still working on Bun full-time?
A: Yes. And now we get access to the resources of the world’s premier AI Lab instead of a small VC-backed startup making $0 in revenue

Q: What does this mean for Bun’s roadmap?
A: Bun’s team will be working more closely with the Claude Code team, and it probably will look similar to the relationship between Google Chrome <> V8, Safari <> JavaScriptCore, Mozilla Firefox <> SpiderMonkey, but with more independence to prioritize the wide variety of ways people & companies use Bun today.

联系我们 contact @ memedata.com