Skip to content
This repository was archived by the owner on Aug 20, 2026. It is now read-only.

Latest commit

 

History

6 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hono-firebase-functions

Firebase Hono Adapter

hono-firebase-functions is an adapter that allows you to run a Hono application on Firebase Functions by bridging Firebase's HTTP request/response to Hono's fetch API pipeline.

Installation

npm install hono firebase-functions hono-firebase-functions
import {onRequest} from "firebase-functions/v2/https";
import {handle} from "hono-firebase-functions";
import {Hono} from "hono";

const app = new Hono();

app.get("/", (c) => {
  return c.text("Hello Hono!");
});

export const hono = onRequest(handle(app));

About

Run Hono apps on Firebase Functions using a simple adapter that bridges Firebase’s HTTP layer with Hono’s fetch API.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Used by

Contributors

Languages