https://github.com/yogyy/customer-counter
hono api with cloudflare workers
https://github.com/yogyy/customer-counter
cloudflare-workers d1-database drizzle-orm hono typescript
Last synced: 30 days ago
JSON representation
hono api with cloudflare workers
- Host: GitHub
- URL: https://github.com/yogyy/customer-counter
- Owner: yogyy
- Created: 2025-07-18T17:30:39.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-09-17T16:42:08.000Z (9 months ago)
- Last Synced: 2025-09-17T18:55:48.208Z (9 months ago)
- Topics: cloudflare-workers, d1-database, drizzle-orm, hono, typescript
- Language: TypeScript
- Homepage:
- Size: 144 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
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 }>()
```