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
- Host: GitHub
- URL: https://github.com/jtmozley/cfw-hono-starter
- Owner: jtmozley
- Created: 2025-09-28T16:21:52.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2025-09-28T16:24:25.000Z (about 1 month ago)
- Last Synced: 2025-09-28T18:23:30.722Z (about 1 month ago)
- Topics: cloudflare, cloudflare-workers, hono, typescript, wrangler
- Language: TypeScript
- Homepage:
- Size: 69.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 }>()
```