> Bun Runtime
Fast JavaScript/TypeScript runtime. Built-in bundler, test runner, and package manager.
fetch
$
curl "https://skillshub.wtf/skillshub-team/catalog-batch5/bun-runtime?format=md"SKILL.md•Bun Runtime
Bun
Run & Dev
bun run index.ts
bun --watch index.ts
HTTP Server (fastest in JS ecosystem)
Bun.serve({
port: 3000,
fetch(req) {
const url = new URL(req.url);
if (url.pathname === "/api") return Response.json({ ok: true });
return new Response("Hello!");
},
});
Package Manager: bun install (25x faster than npm)
Bundler: bun build ./index.ts --outdir ./dist
Test Runner: bun test
import { test, expect } from "bun:test";
test("math", () => { expect(2 + 2).toBe(4); });
SQLite built-in: import { Database } from "bun:sqlite";
> related_skills --same-repo
> Nix Dev Shells with direnv
Auto-activate reproducible dev environments with Nix flakes and direnv.
> Dagger with GitHub Actions
Run Dagger CI/CD pipelines in GitHub Actions for portable, testable builds.
> Bun + Hono API
Build fast APIs with Bun runtime and Hono framework.
> Deno Fresh Framework
Build full-stack web apps with Fresh on Deno. Islands, routes, and zero runtime overhead.
┌ stats
installs/wk0
░░░░░░░░░░first seenMar 18, 2026
└────────────