Bun is a fast all-in-one JavaScript runtime
Bundle, transpile, install and run JavaScript & TypeScript projects — all in Bun. Bun is a new JavaScript runtime with a native bundler, transpiler, task runner and npm client built-in.
Bundle, transpile, install and run JavaScript & TypeScript projects — all in Bun. Bun is a new JavaScript runtime with a native bundler, transpiler, task runner and npm client built-in.
Bun is a modern JavaScript runtime like Node or Deno. It was built from scratch to focus on three main things:
Bun is designed as a drop-in replacement for your current JavaScript & TypeScript apps or scripts — on your local computer, server or on the edge. Bun natively implements hundreds of Node.js and Web APIs, including ~90% of Node-API functions (native modules), fs, path, Buffer and more.
The goal of Bun is to run most of the worlds JavaScript outside of browsers, bringing performance and complexity enhancements to your future infrastructure, as well as developer productivity through better, simpler tooling.
"paths", "jsxImportSource"and more from tsconfig.json filesrequire("dotenv").load()Bun.js uses the JavaScriptCore engine, which tends to start and perform a little faster than more traditional choices like V8. Bun is written in , a low-level programming language with manual memory management.
Most of Bun is written from scratch including the JSX/TypeScript transpiler, npm client, bundler, SQLite client, HTTP client, WebSocket client and more.
An enormous amount of time spent profiling, benchmarking and optimizing things. The answer is different for every part of Bun, but one general theme: 's low-level control over memory and lack of hidden control flow makes it much simpler to write fast software. Sponsor the Zig Software Foundation
To install bun, run this install script in your terminal. It downloads Bun from GitHub.
curl https://bun.sh/install | bashBun's HTTP server is built on web standards like Request and Response
// http.js
export default {
port: 3000,
fetch(request) {
return new Response("Welcome to Bun!");
},
};Run it with bun:
bun run http.jsThen open http://localhost:3000 in your browser
See more examples and check out the docs. If you have any questions or want help, join Bun's Discord
The same command for running JavaScript & TypeScript files with bun's JavaScript runtime also runs package.json "scripts".
npm run with bun run and save 160ms on every run.npm runbun install is an npm-compatible package manager. You probably will be surprised by how much faster copying files can get.
Replaceyarn with bun install and get 20x faster package installs.A Jest-like test runner for JavaScript & TypeScript projects builtin to bun
MIT License, excluding dependencies which have various licenses.
Bun is on GitHub