Bun 是一個快速的 JavaScript
多合一工具包|
開發、測試、執行和打包 JavaScript 和 TypeScript 專案,所有這些都使用 Bun。Bun 是專為速度而設計的多合一 JavaScript 執行環境和工具包,並配備一個打包器、測試執行器和與 Node.js 相容的套件管理員。
Bun for Windows 已發布!查看 Bun 1.1 的新功能 →
開發、測試、執行和打包 JavaScript 和 TypeScript 專案,所有這些都使用 Bun。Bun 是專為速度而設計的多合一 JavaScript 執行環境和工具包,並配備一個打包器、測試執行器和與 Node.js 相容的套件管理員。
$ bun run
Bun 是從頭開始建構的全新 JavaScript 執行環境,用於服務現代 JavaScript 生態系統。它有三大設計目標
Bun 被設計為 Node.js 的替代方案。它原生實作了數百個 Node.js 和 Web API,包括 fs
、path
、Buffer
等。
Bun 的目標是執行世界上大部分的伺服器端 JavaScript,並提供工具來改善效能、降低複雜性,並提升開發人員的生產力。
Node.js 相容性
Buffer
和 process
等全域變數,以及 fs
和 path
等內建模組。按一下以追蹤 Bun 朝向完全相容性的進度。快速的執行效能
Works with node_modules
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
package.json
configurations. With Bun, it just works.TypeScript
.ts
and .tsx
files. Bun respects your settings configured in tsconfig.json
, including "paths"
, "jsx"
, and more.Web-standard APIs
fetch
, ReadableStream
, Request
, Response
, WebSocket
, and FormData
.JSX
tsconfig.json
.Watch mode
bun run
CLI provides a smart --watch
flag that automatically restarts the process when any imported file changes.啟動 HTTP 伺服器
啟動 WebSocket 伺服器
讀寫檔案
雜湊密碼
瀏覽器套件
撰寫測試
檔案系統路由
讀取串流
執行 shell 腳本
呼叫 C 函式
const server = Bun.serve({
port: 3000,
fetch(request) {
return new Response("Welcome to Bun!");
},
});
console.log(`Listening on localhost:${server.port}`);
$ bun install
Bun
pnpm
npm
Yarn
安裝 Remix 應用程式的快取相依性。
檢視基準測試
Node.js compatible
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
Workspaces
workspaces
key from your package.json
and installs dependencies for your whole monorepo.Global install cache
Binary lockfile
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
npm
, pnpm
, or yarn
.$ bun test
Bun
Vitest
Jest+SWC
Jest+tsjest
Jest+Babel
Jest-compatible syntax
expect()
API. Switch to bun test
with no code changes.Crazy fast
Lifecycle hooks
beforeEach
/afterEach
or per-file with beforeAll
/afterAll
.Snapshot testing
.toMatchSnapshot()
. Overwrite snapshots with the --update-snapshots
flag.DOM APIs
Watch mode
--watch
flag to re-run tests when files change using Bun's instantaneous watch mode.Function mocks
mock()
or spy on methods with spyOn()
.1
安裝 Bun
curl -fsSL https://bun.dev.org.tw/install | bash
2
撰寫程式碼
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 執行常見任務。
Ecosystem
Build a frontend using Vite and Bun
Runtime
Install TypeScript declarations for Bun
Streams
Convert a ReadableStream to a string with Bun