https://github.com/ariesclark/screenshot-worker
https://github.com/ariesclark/screenshot-worker
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ariesclark/screenshot-worker
- Owner: ariesclark
- Created: 2025-05-27T17:23:40.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-05-27T17:24:01.000Z (5 months ago)
- Last Synced: 2025-06-17T12:47:31.854Z (4 months ago)
- Language: TypeScript
- 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 }>()
```