Skip to content

jasongodev/hono-runtime

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

UNDER DEVELOPMENT, COME BACK SOON!

hono-runtime

Instantiate hono using the same code across different runtimes.

Installation

Using hono-runtime npm package:

npm i hono-runtime

No need to include hono package because hono-runtime includes hono as its dependency. You can also use a template to start a hono-runtime project:

npm create hono-runtime-template

Code Usage

import { Hono } from 'hono-runtime/cloudflare'

const app = new Hono()

/* your code here */

export default app.serve()