An open API service indexing awesome lists of open source software.

https://github.com/jtmozley/cfw-hono-starter

Hono app setup for large application organization and ready to deploy to Cloudflare Workers
https://github.com/jtmozley/cfw-hono-starter

cloudflare cloudflare-workers hono typescript wrangler

Last synced: 29 days ago
JSON representation

Hono app setup for large application organization and ready to deploy to Cloudflare Workers

Awesome Lists containing this project

README

          

```txt
npm install
npm run dev
```

```txt
npm run deploy
```

[For generating/synchronizing types based on your Worker configuration run](https://developers.cloudflare.com/workers/wrangler/commands/#types):

```txt
npm run cf-typegen
```

Pass the `CloudflareBindings` as generics when instantiation `Hono`:

```ts
// src/index.ts
const app = new Hono<{ Bindings: CloudflareBindings }>()
```