Covers the essentials of Bun.serve() for building HTTP servers without needing external frameworks. You get request/response handling, body parsing for JSON and forms, simple regex-based routing patterns, static file serving, and CORS setup. The examples are practical and show you how to handle common scenarios like error handling, different response types, and server configuration options. If you're building a REST API or simple web server with Bun and want to stick with the standard library instead of pulling in Express or Hono, this gives you the patterns to do it. The routing approach is basic but functional for small to medium projects.
npx skills add https://github.com/secondsky/claude-skills --skill bun-http-server