bun-http-server

Installation
SKILL.md

Bun HTTP Server

Bun has a built-in high-performance HTTP server via Bun.serve().

Quick Start

const server = Bun.serve({
  port: 3000,
  fetch(req) {
    return new Response("Hello World!");
  },
});

console.log(`Server running at http://localhost:${server.port}`);

Request Handling

Related skills

More from secondsky/claude-skills

Installs
104
GitHub Stars
143
First Seen
Apr 3, 2026