AgentStack
SKILL verified MIT Self-run

Bun Build an HTTP server using Hono and Bun

skill-jarle-bun-skills-bun-guides-ecosystem-hono · by jarle

Build an HTTP server using Hono and Bun

No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add skill-jarle-bun-skills-bun-guides-ecosystem-hono

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Bun Build an HTTP server using Hono and Bun? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Build an HTTP server using Hono and Bun

Hono is a lightweight ultrafast web framework designed for the edge.

```ts server.ts icon="https://mintcdn.com/bun-1dd33a4e/nIz6GtMH5K-dfXeV/icons/typescript.svg?fit=max&auto=format&n=nIz6GtMH5K-dfXeV&q=85&s=5d73d76daf7eb7b158469d8c30d349b0" theme={"theme":{"light":"github-light","dark":"dracula"}} import { Hono } from "hono"; const app = new Hono();

app.get("/", c => c.text("Hono!"));

export default app;


***

Use `create-hono` to get started with one of Hono's project templates. Select `bun` when prompted for a template.

```sh terminal icon="terminal" theme={"theme":{"light":"github-light","dark":"dracula"}}
bun create hono myapp

```txt theme={"theme":{"light":"github-light","dark":"dracula"}} ✔ Which template do you want to use? › bun cloned honojs/starter#main to /path/to/myapp ✔ Copied project files


```sh terminal icon="terminal" theme={"theme":{"light":"github-light","dark":"dracula"}}
cd myapp
bun install

Then start the dev server and visit localhost:3000.

```sh terminal icon="terminal" theme={"theme":{"light":"github-light","dark":"dracula"}} bun run dev


***

Refer to Hono's guide on [getting started with Bun](https://hono.dev/getting-started/bun) for more information.

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [jarle](https://github.com/jarle)
- **Source:** [jarle/bun-skills](https://github.com/jarle/bun-skills)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.