https://github.com/tushcmd/honojs
https://github.com/tushcmd/honojs
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tushcmd/honojs
- Owner: tushcmd
- Created: 2025-07-13T10:42:09.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-07-13T17:04:01.000Z (12 months ago)
- Last Synced: 2025-07-13T19:07:11.873Z (12 months ago)
- Language: TypeScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```txt
bun install
bun run dev
```
```txt
bun run deploy
```
[For generating/synchronizing types based on your Worker configuration run](https://developers.cloudflare.com/workers/wrangler/commands/#types):
```txt
bun run cf-typegen
```
Pass the `CloudflareBindings` as generics when instantiation `Hono`:
```ts
// src/index.ts
const app = new Hono<{ Bindings: CloudflareBindings }>();
```