To install Bun
curl -fsSL https://bun.sh/install | bashnpm install -g bunpowershell -c "irm bun.sh/install.ps1|iex"scoop install bunbrew tap oven-sh/bunbrew install bundocker pull oven/bundocker run --rm --init --ulimit memlock=-1:-1 oven/bunTo upgrade Bun
bun upgradeBun.markdown β Built-in Markdown Parser
Bun now includes a fast, CommonMark-compliant Markdown parser written in Zig. This is a Zig port of the popular md4c library.
The new Bun.markdown API provides three ways to render Markdown:
Bun.markdown.html() β Render to HTML
const html = Bun.markdown.html("# Hello **world**");
// "<h1>Hello <strong>world</strong></h1>\n"
// With options
Bun.markdown.html("## Hello", { headingIds: true });
// '<h2 id="hello">Hello</h2>\n'
Bun.markdown.render() β Custom Callbacks
Render with JavaScript callbacks for each element, perfect for custom HTML, ANSI terminal output, or stripping formatting:
// Custom HTML with classes
const html = Bun.markdown.render("# Title\n\nHello **world**", {
heading: (children, { level }) =>
`<h${level} class="title">${children}</h${level}>`,
paragraph: (children) => `<p>${children}</p>`,
strong: (children) => `<b>${children}</b>`,
});
// ANSI terminal output
const ansi = Bun.markdown.render("# Hello\n\n**bold**", {
heading: (children) => `\x1b[1;4m${children}\x1b[0m\n`,
paragraph: (children) => children + "\n",
strong: (children) => `\x1b[1m${children}\x1b[22m`,
});
// Return null to omit elements
const result = Bun.markdown.render("# Title\n\n", {
image: () => null,
heading: (children) => children,
});
Bun.markdown.react() β React Elements
Returns a React Fragment directly usable as a component return value:
function Markdown({ text }: { text: string }) {
return Bun.markdown.react(text);
}
// With custom components
const element = Bun.markdown.react("# Hello", {
h1: ({ children }) => <h1 className="title">{children}</h1>,
});
// Server-side rendering
import { renderToString } from "react-dom/server";
const html = renderToString(Bun.markdown.react("# Hello **world**"));
For React 18 and older, pass reactVersion: 18 since the default targets React 19's element format.
GFM Extensions
GitHub Flavored Markdown extensions are enabled by default:
- Tables
- Strikethrough (
~~deleted~~) - Task lists (
- [x] done) - Permissive autolinks
Additional options include wikiLinks, latexMath, headingIds, and autolinkHeadings.
--metafile-md CLI option for LLM-friendly bundle analysis
bun build now supports a --metafile-md option that generates a Markdown visualization of your bundle's module graph. This is particularly useful for analyzing bundle composition with LLMs like Claudeβpaste the output into a chat to identify bloat, understand dependency chains, and optimize your builds.
# Default filename (meta.md)
bun build entry.js --metafile-md --outdir=dist
# Custom filename
bun build entry.js --metafile-md=analysis.md --outdir=dist
# Both JSON and markdown
bun build entry.js --metafile=meta.json --metafile-md=meta.md --outdir=dist
The generated Markdown includes:
- Quick Summary β Module counts, sizes, ESM/CJS breakdown, output/input ratio
- Largest Input Files β Sorted by size to identify potential bloat
- Entry Point Analysis β Bundle size, exports, CSS bundles, and bundled modules
- Dependency Chains β Most commonly imported modules and reverse dependencies
- Full Module Graph β Complete import/export info for each module
- Raw Data for Searching β Grep-friendly markers like
[MODULE:],[SIZE:],[IMPORT:]
The Bun.build() API also supports this via an expanded metafile option:
const result = await Bun.build({
entrypoints: ["./index.ts"],
outdir: "./dist",
// Can now be a string path or object with json/markdown paths
metafile: {
json: "meta.json",
markdown: "meta.md",
},
});
Bugfixes
- Updated mimalloc
- Fixed:
napi_typeofincorrectly returningnapi_objectinstead ofnapi_functionfor callbacks wrapped inAsyncContextFrame, which caused native addons like encore.dev to panic with "expect Function, got: Object" when usingAsyncLocalStorage.run() - Fixed: Crash during heap snapshot generation in certain cases
- Fixed: Crash in
node:vmwhen usingSyntheticModulewithnode:async_hooksenabled, such as when running the React Email preview server - Fixed: HTTP/2 stream state handling that caused gRPC streaming calls to fail with
DEADLINE_EXCEEDEDerrors in certain cases when using libraries like@google-cloud/firestoreand@grpc/grpc-js - Fixed:
npm i -g bunfailing on Windows due to npm'scmd-shimgenerating broken wrappers that referenced/bin/shfrom placeholder scripts' shebang lines