npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@superfunctions/http-hono

v0.1.1

Published

Hono adapter for @superfunctions/http

Readme

@superfunctions/http-hono

Hono adapter for @superfunctions/http - Use framework-agnostic routers with Hono.

Installation

npm install @superfunctions/http @superfunctions/http-hono hono

Quick Start

import { Hono } from 'hono';
import { createRouter } from '@superfunctions/http';
import { toHono } from '@superfunctions/http-hono';

// Define your router (framework-agnostic)
const apiRouter = createRouter({
  routes: [
    {
      method: 'GET',
      path: '/users/:id',
      handler: async (req, ctx) => {
        return Response.json({ id: ctx.params.id });
      },
    },
  ],
});

// Use with Hono
const app = new Hono();
app.route('/api', toHono(apiRouter));

export default app;

API

toHono(router)

Converts a @superfunctions/http router to a Hono instance.

Parameters:

  • router: Router instance from @superfunctions/http

Returns: Hono

Example:

import { toHono } from '@superfunctions/http-hono';

const honoApp = toHono(myRouter);
app.route('/api', honoApp);

Usage Examples

With Middleware

import { createRouter } from '@superfunctions/http';
import { toHono } from '@superfunctions/http-hono';

const router = createRouter({
  middleware: [
    async (req, ctx, next) => {
      // Auth middleware
      const token = req.headers.get('Authorization');
      if (!token) {
        return Response.json({ error: 'Unauthorized' }, { status: 401 });
      }
      return next();
    },
  ],
  routes: [
    {
      method: 'GET',
      path: '/protected',
      handler: async () => Response.json({ data: 'secret' }),
    },
  ],
});

const app = new Hono();
app.route('/api', toHono(router));

With Custom Context

interface AppContext {
  db: Database;
}

const router = createRouter<AppContext>({
  context: { db: myDatabase },
  routes: [
    {
      method: 'GET',
      path: '/users',
      handler: async (req, ctx) => {
        const users = await ctx.db.findMany({ model: 'users' });
        return Response.json(users);
      },
    },
  ],
});

const app = new Hono();
app.route('/api', toHono(router));

Multiple Routers

const usersRouter = createRouter({ routes: [/* user routes */] });
const postsRouter = createRouter({ routes: [/* post routes */] });

const app = new Hono();
app.route('/api/users', toHono(usersRouter));
app.route('/api/posts', toHono(postsRouter));

Edge Runtime Example

// Cloudflare Workers
import { createRouter } from '@superfunctions/http';
import { toHono } from '@superfunctions/http-hono';

const router = createRouter({
  routes: [
    { method: 'GET', path: '/', handler: async () => Response.json({ ok: true }) }
  ]
});

const app = new Hono();
app.route('/', toHono(router));

export default app;

Alternative: Universal Handler

Since Hono uses Web Standards natively, you can also use the router directly without the adapter:

import { Hono } from 'hono';
import { createRouter } from '@superfunctions/http';

const router = createRouter({
  routes: [/* routes */]
});

const app = new Hono();
app.all('/*', (c) => router.handler(c.req.raw));

When to use the adapter:

  • ✅ Full per-route registration
  • ✅ Framework-native patterns
  • ✅ Better integration with Hono middleware

When to use universal handler:

  • ✅ Simpler setup
  • ✅ Single catch-all route
  • ✅ Minimal code

Important Notes

Web Standards

Hono uses Web Standard Request and Response natively, making this adapter very lightweight with near-zero overhead.

Route Paths

Routes are registered relative to the mount point:

const router = createRouter({
  routes: [
    { method: 'GET', path: '/hello', handler: () => Response.json({ msg: 'hi' }) }
  ]
});

// Route accessible at: /api/hello
app.route('/api', toHono(router));

HEAD Requests

Hono doesn't have a built-in head method, so HEAD requests in your router are automatically skipped. Most frameworks handle HEAD automatically from GET routes.

TypeScript

Full TypeScript support with proper types:

import type { Router } from '@superfunctions/http';
import type { Hono } from 'hono';

const myRouter: Router = createRouter({ routes: [...] });
const honoApp: Hono = toHono(myRouter);

Edge Runtime Support

Works seamlessly with:

  • ✅ Cloudflare Workers
  • ✅ Deno Deploy
  • ✅ Vercel Edge Functions
  • ✅ Bun

Compatibility

  • Hono 4.x ✅

License

MIT