hono-runtime
v0.1.13
Published
Instantiate hono using the same code across different runtimes.
Downloads
63
Maintainers
Readme
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()