Bun for Windows 已發布!查看 Bun 1.1 的新功能 →

Bun
Bun v1.1.5 已發布!→

Bun 是一個快速的 JavaScript
多合一工具包|

開發、測試、執行和打包 JavaScript 和 TypeScript 專案,所有這些都使用 Bun。Bun 是專為速度而設計的多合一 JavaScript 執行環境和工具包,並配備一個打包器、測試執行器和與 Node.js 相容的套件管理員

$ bun run

Bun 是一個 JavaScript 執行環境。

Bun 是從頭開始建構的全新 JavaScript 執行環境,用於服務現代 JavaScript 生態系統。它有三大設計目標

Bun 被設計為 Node.js 的替代方案。它原生實作了數百個 Node.js 和 Web API,包括 fspathBuffer 等。

Bun 的目標是執行世界上大部分的伺服器端 JavaScript,並提供工具來改善效能、降低複雜性,並提升開發人員的生產力。

Node.js 相容性

Bun 的目標是成為 Node.js 的替代方案。它實作了 Node 的模組解析演算法、Bufferprocess 等全域變數,以及 fspath 等內建模組。按一下以追蹤 Bun 朝向完全相容性的進度。

快速的執行效能

Bun 擴充了 JavaScriptCore 引擎,這是為 Safari 建構的效能導向 JS 引擎,並透過 Zig 實作了原生速度的功能。

Works with node_modules

With Bun, you still use package.json to manage your dependencies. Use Bun's native npm client to see just how fast installing dependencies can be.

No more module madness

Forget the complicated rules around CommonJS, ESM, file extensions, resolution priority, and package.json configurations. With Bun, it just works.

TypeScript

TypeScript is a first-class citizen in Bun. Directly execute .ts and .tsx files. Bun respects your settings configured in tsconfig.json, including "paths", "jsx", and more.

Web-standard APIs

Bun implements the Web-standard APIs you know and love, including fetch, ReadableStream, Request, Response, WebSocket, and FormData.

JSX

JSX just works. Bun internally transpiles JSX syntax to vanilla JavaScript. Like TypeScript itself, Bun assumes React by default but respects custom JSX transforms defined in tsconfig.json.

Watch mode

The bun run CLI provides a smart --watch flag that automatically restarts the process when any imported file changes.

您需要的 API。內建。

啟動 HTTP 伺服器

啟動 WebSocket 伺服器

讀寫檔案

雜湊密碼

瀏覽器套件

撰寫測試

檔案系統路由

讀取串流

執行 shell 腳本

呼叫 C 函式

index.tsx
const server = Bun.serve({
  port: 3000,
  fetch(request) {
    return new Response("Welcome to Bun!");
  },
});

console.log(`Listening on localhost:${server.port}`);

$ bun install

Bun 是與 npm 相容的套件管理員。

Bun

pnpm

npm

Yarn

安裝 Remix 應用程式的快取相依性。
檢視基準測試

Node.js compatible

Bun still installs your dependencies into node_modules like npm and other package managers—it just does it faster. You don't need to use the Bun runtime to use Bun as a package manager.

Crazy fast

Bun uses the fastest system calls available on each operating system to make installs faster than you'd think possible.

Workspaces

Workspaces are supported out of the box. Bun reads the workspaces key from your package.json and installs dependencies for your whole monorepo.

Global install cache

Download once, install anywhere. Bun only downloads a particular version of a package from npm once; future installations will copy it from the cache.

Binary lockfile

After installation, Bun creates a binary bun.lockb lockfile with the resolved versions of each dependency. The binary format makes reading and parsing much faster than JSON- or Yaml-based lockfiles.

Familiar API

Bun's CLI uses commands and flags that will feel familiar to any users of npm, pnpm, or yarn.

使用 bun install 取代 yarn,讓套件安裝速度快 30 倍。

$ bun test

Bun 是測試執行器,讓其他測試執行器看起來像測試漫遊器。

Bun

Vitest

慢 5 倍

Jest+SWC

慢 8 倍

Jest+tsjest

慢 18 倍

Jest+Babel

慢 20 倍

執行 Zod 的測試套件
檢視基準測試

Jest-compatible syntax

Bun provides a Jest-style expect() API. Switch to bun test with no code changes.

Crazy fast

Bun's fast startup times shine in the test runner. You won't believe how much faster your tests will run.

Lifecycle hooks

Run setup and teardown code per-test with beforeEach/afterEach or per-file with beforeAll/afterAll.

Snapshot testing

Full support for on-disk snapshot testing with .toMatchSnapshot(). Overwrite snapshots with the --update-snapshots flag.

DOM APIs

Simulate DOM and browser APIs in your tests using happy-dom.

Watch mode

Use the --watch flag to re-run tests when files change using Bun's instantaneous watch mode.

Function mocks

Mock functions with mock() or spy on methods with spyOn().

使用 bun test 取代 jest,讓測試執行速度快 10-30 倍。

1

安裝 Bun

curl -fsSL https://bun.dev.org.tw/install | bash

2

撰寫程式碼

index.tsx
const server = Bun.serve({
  port: 3000,
  fetch(request) {
    return new Response("Welcome to Bun!");
  },
});

console.log(`Listening on localhost:${server.port}`);

3

執行檔案

bun index.tsx

透過範例學習。

我們的指南說明如何使用 Bun 執行常見任務。