hono-cloudflare
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseHono on Cloudflare Workers
Hono 在 Cloudflare Workers 上的实践
Overview
概述
Hono was originally built for Cloudflare Workers and provides first-class support for the entire Cloudflare ecosystem including KV, D1, R2, Durable Objects, Queues, and more.
Key Features:
- Native Workers support
- Type-safe bindings access
- KV, D1, R2, Durable Objects integration
- Static asset serving
- Cloudflare Pages support
- Queue and scheduled handlers
Hono最初是为Cloudflare Workers打造的,为整个Cloudflare生态系统提供一流支持,包括KV、D1、R2、Durable Objects、队列等。
核心特性:
- 原生Workers支持
- 类型安全的绑定访问
- 集成KV、D1、R2、Durable Objects
- 静态资源托管
- 支持Cloudflare Pages
- 队列与定时处理器
When to Use This Skill
适用场景
Use Hono on Cloudflare when:
- Building edge APIs with global distribution
- Need serverless SQLite with D1
- Building real-time apps with Durable Objects
- Storing files with R2
- Need fast key-value storage with KV
- Deploying full-stack apps to Pages
在以下场景中使用Cloudflare上的Hono:
- 构建具备全球分发能力的边缘API
- 需要基于Serverless的SQLite(D1)
- 构建使用Durable Objects的实时应用
- 使用R2存储文件
- 需要高性能键值存储(KV)
- 将全栈应用部署到Pages
Quick Start
快速开始
Create New Project
创建新项目
bash
npm create hono@latest my-appbash
npm create hono@latest my-appSelect: cloudflare-workers
选择:cloudflare-workers
cd my-app
npm install
npm run dev
undefinedcd my-app
npm install
npm run dev
undefinedProject Structure
项目结构
my-app/
├── src/
│ └── index.ts # Main entry point
├── wrangler.toml # Cloudflare configuration
├── package.json
└── tsconfig.jsonmy-app/
├── src/
│ └── index.ts # 主入口文件
├── wrangler.toml # Cloudflare配置文件
├── package.json
└── tsconfig.jsonBasic Application
基础应用
typescript
// src/index.ts
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello Cloudflare Workers!'))
export default apptypescript
// src/index.ts
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello Cloudflare Workers!'))
export default appDeploy
部署
bash
undefinedbash
undefinedDeploy to Cloudflare
部署到Cloudflare
npx wrangler deploy
npx wrangler deploy
Local development
本地开发
npx wrangler dev
undefinednpx wrangler dev
undefinedEnvironment Bindings
环境绑定
Typed Bindings
类型化绑定
typescript
import { Hono } from 'hono'
// Define your bindings
type Bindings = {
// Environment variables
API_KEY: string
DATABASE_URL: string
// KV Namespaces
MY_KV: KVNamespace
// D1 Databases
DB: D1Database
// R2 Buckets
BUCKET: R2Bucket
// Durable Objects
COUNTER: DurableObjectNamespace
// Queues
MY_QUEUE: Queue
}
const app = new Hono<{ Bindings: Bindings }>()
app.get('/config', (c) => {
// Fully typed access
const apiKey = c.env.API_KEY
return c.json({ configured: !!apiKey })
})
export default apptypescript
import { Hono } from 'hono'
// 定义绑定类型
type Bindings = {
// 环境变量
API_KEY: string
DATABASE_URL: string
// KV命名空间
MY_KV: KVNamespace
// D1数据库
DB: D1Database
// R2存储桶
BUCKET: R2Bucket
// Durable Objects
COUNTER: DurableObjectNamespace
// 队列
MY_QUEUE: Queue
}
const app = new Hono<{ Bindings: Bindings }>()
app.get('/config', (c) => {
// 类型安全的访问
const apiKey = c.env.API_KEY
return c.json({ configured: !!apiKey })
})
export default appwrangler.toml Configuration
wrangler.toml配置
toml
name = "my-app"
main = "src/index.ts"
compatibility_date = "2024-01-01"
[vars]
API_KEY = "your-api-key" # pragma: allowlist secret
[[kv_namespaces]]
binding = "MY_KV"
id = "your-kv-id"
[[d1_databases]]
binding = "DB"
database_name = "my-database"
database_id = "your-d1-id"
[[r2_buckets]]
binding = "BUCKET"
bucket_name = "my-bucket"
[[queues.producers]]
binding = "MY_QUEUE"
queue = "my-queue"toml
name = "my-app"
main = "src/index.ts"
compatibility_date = "2024-01-01"
[vars]
API_KEY = "your-api-key" # pragma: allowlist secret
[[kv_namespaces]]
binding = "MY_KV"
id = "your-kv-id"
[[d1_databases]]
binding = "DB"
database_name = "my-database"
database_id = "your-d1-id"
[[r2_buckets]]
binding = "BUCKET"
bucket_name = "my-bucket"
[[queues.producers]]
binding = "MY_QUEUE"
queue = "my-queue"KV Storage
KV存储
Basic Operations
基础操作
typescript
type Bindings = {
CACHE: KVNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
// Get value
app.get('/cache/:key', async (c) => {
const key = c.req.param('key')
const value = await c.env.CACHE.get(key)
if (!value) {
return c.json({ error: 'Not found' }, 404)
}
return c.json({ key, value })
})
// Get JSON value
app.get('/cache/:key/json', async (c) => {
const key = c.req.param('key')
const value = await c.env.CACHE.get(key, 'json')
return c.json({ key, value })
})
// Set value
app.put('/cache/:key', async (c) => {
const key = c.req.param('key')
const body = await c.req.json()
await c.env.CACHE.put(key, JSON.stringify(body), {
expirationTtl: 3600 // 1 hour
})
return c.json({ success: true })
})
// Delete value
app.delete('/cache/:key', async (c) => {
const key = c.req.param('key')
await c.env.CACHE.delete(key)
return c.json({ success: true })
})
// List keys
app.get('/cache', async (c) => {
const prefix = c.req.query('prefix') || ''
const list = await c.env.CACHE.list({ prefix, limit: 100 })
return c.json({ keys: list.keys })
})typescript
type Bindings = {
CACHE: KVNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
// 获取值
app.get('/cache/:key', async (c) => {
const key = c.req.param('key')
const value = await c.env.CACHE.get(key)
if (!value) {
return c.json({ error: '未找到' }, 404)
}
return c.json({ key, value })
})
// 获取JSON值
app.get('/cache/:key/json', async (c) => {
const key = c.req.param('key')
const value = await c.env.CACHE.get(key, 'json')
return c.json({ key, value })
})
// 设置值
app.put('/cache/:key', async (c) => {
const key = c.req.param('key')
const body = await c.req.json()
await c.env.CACHE.put(key, JSON.stringify(body), {
expirationTtl: 3600 // 1小时
})
return c.json({ success: true })
})
// 删除值
app.delete('/cache/:key', async (c) => {
const key = c.req.param('key')
await c.env.CACHE.delete(key)
return c.json({ success: true })
})
// 列出键
app.get('/cache', async (c) => {
const prefix = c.req.query('prefix') || ''
const list = await c.env.CACHE.list({ prefix, limit: 100 })
return c.json({ keys: list.keys })
})KV with Metadata
带元数据的KV操作
typescript
interface UserMeta {
createdAt: string
role: string
}
app.put('/users/:id', async (c) => {
const id = c.req.param('id')
const user = await c.req.json()
await c.env.CACHE.put(`user:${id}`, JSON.stringify(user), {
metadata: {
createdAt: new Date().toISOString(),
role: user.role
} as UserMeta
})
return c.json({ success: true })
})
app.get('/users/:id', async (c) => {
const id = c.req.param('id')
const { value, metadata } = await c.env.CACHE.getWithMetadata<UserMeta>(`user:${id}`, 'json')
if (!value) {
return c.json({ error: 'Not found' }, 404)
}
return c.json({ user: value, metadata })
})typescript
interface UserMeta {
createdAt: string
role: string
}
app.put('/users/:id', async (c) => {
const id = c.req.param('id')
const user = await c.req.json()
await c.env.CACHE.put(`user:${id}`, JSON.stringify(user), {
metadata: {
createdAt: new Date().toISOString(),
role: user.role
} as UserMeta
})
return c.json({ success: true })
})
app.get('/users/:id', async (c) => {
const id = c.req.param('id')
const { value, metadata } = await c.env.CACHE.getWithMetadata<UserMeta>(`user:${id}`, 'json')
if (!value) {
return c.json({ error: '未找到' }, 404)
}
return c.json({ user: value, metadata })
})D1 Database
D1数据库
Basic Queries
基础查询
typescript
type Bindings = {
DB: D1Database
}
const app = new Hono<{ Bindings: Bindings }>()
// Select all
app.get('/users', async (c) => {
const { results } = await c.env.DB
.prepare('SELECT * FROM users ORDER BY created_at DESC')
.all()
return c.json({ users: results })
})
// Select one
app.get('/users/:id', async (c) => {
const id = c.req.param('id')
const user = await c.env.DB
.prepare('SELECT * FROM users WHERE id = ?')
.bind(id)
.first()
if (!user) {
return c.json({ error: 'Not found' }, 404)
}
return c.json({ user })
})
// Insert
app.post('/users', async (c) => {
const { name, email } = await c.req.json()
const result = await c.env.DB
.prepare('INSERT INTO users (name, email) VALUES (?, ?)')
.bind(name, email)
.run()
return c.json({
success: result.success,
id: result.meta.last_row_id
}, 201)
})
// Update
app.put('/users/:id', async (c) => {
const id = c.req.param('id')
const { name, email } = await c.req.json()
const result = await c.env.DB
.prepare('UPDATE users SET name = ?, email = ? WHERE id = ?')
.bind(name, email, id)
.run()
return c.json({ success: result.success })
})
// Delete
app.delete('/users/:id', async (c) => {
const id = c.req.param('id')
const result = await c.env.DB
.prepare('DELETE FROM users WHERE id = ?')
.bind(id)
.run()
return c.json({ success: result.success })
})typescript
type Bindings = {
DB: D1Database
}
const app = new Hono<{ Bindings: Bindings }>()
// 查询所有用户
app.get('/users', async (c) => {
const { results } = await c.env.DB
.prepare('SELECT * FROM users ORDER BY created_at DESC')
.all()
return c.json({ users: results })
})
// 查询单个用户
app.get('/users/:id', async (c) => {
const id = c.req.param('id')
const user = await c.env.DB
.prepare('SELECT * FROM users WHERE id = ?')
.bind(id)
.first()
if (!user) {
return c.json({ error: '未找到' }, 404)
}
return c.json({ user })
})
// 插入用户
app.post('/users', async (c) => {
const { name, email } = await c.req.json()
const result = await c.env.DB
.prepare('INSERT INTO users (name, email) VALUES (?, ?)')
.bind(name, email)
.run()
return c.json({
success: result.success,
id: result.meta.last_row_id
}, 201)
})
// 更新用户
app.put('/users/:id', async (c) => {
const id = c.req.param('id')
const { name, email } = await c.req.json()
const result = await c.env.DB
.prepare('UPDATE users SET name = ?, email = ? WHERE id = ?')
.bind(name, email, id)
.run()
return c.json({ success: result.success })
})
// 删除用户
app.delete('/users/:id', async (c) => {
const id = c.req.param('id')
const result = await c.env.DB
.prepare('DELETE FROM users WHERE id = ?')
.bind(id)
.run()
return c.json({ success: result.success })
})Batch Operations
批量操作
typescript
app.post('/users/batch', async (c) => {
const { users } = await c.req.json()
const statements = users.map((user: { name: string; email: string }) =>
c.env.DB
.prepare('INSERT INTO users (name, email) VALUES (?, ?)')
.bind(user.name, user.email)
)
const results = await c.env.DB.batch(statements)
return c.json({
success: results.every(r => r.success),
count: results.length
})
})typescript
app.post('/users/batch', async (c) => {
const { users } = await c.req.json()
const statements = users.map((user: { name: string; email: string }) =>
c.env.DB
.prepare('INSERT INTO users (name, email) VALUES (?, ?)')
.bind(user.name, user.email)
)
const results = await c.env.DB.batch(statements)
return c.json({
success: results.every(r => r.success),
count: results.length
})
})R2 Object Storage
R2对象存储
typescript
type Bindings = {
BUCKET: R2Bucket
}
const app = new Hono<{ Bindings: Bindings }>()
// Upload file
app.post('/files/:key', async (c) => {
const key = c.req.param('key')
const body = await c.req.arrayBuffer()
const contentType = c.req.header('Content-Type') || 'application/octet-stream'
await c.env.BUCKET.put(key, body, {
httpMetadata: { contentType }
})
return c.json({ success: true, key })
})
// Download file
app.get('/files/:key', async (c) => {
const key = c.req.param('key')
const object = await c.env.BUCKET.get(key)
if (!object) {
return c.json({ error: 'Not found' }, 404)
}
const headers = new Headers()
headers.set('Content-Type', object.httpMetadata?.contentType || 'application/octet-stream')
headers.set('ETag', object.httpEtag)
return new Response(object.body, { headers })
})
// Delete file
app.delete('/files/:key', async (c) => {
const key = c.req.param('key')
await c.env.BUCKET.delete(key)
return c.json({ success: true })
})
// List files
app.get('/files', async (c) => {
const prefix = c.req.query('prefix') || ''
const list = await c.env.BUCKET.list({ prefix, limit: 100 })
return c.json({
objects: list.objects.map(obj => ({
key: obj.key,
size: obj.size,
uploaded: obj.uploaded
}))
})
})typescript
type Bindings = {
BUCKET: R2Bucket
}
const app = new Hono<{ Bindings: Bindings }>()
// 上传文件
app.post('/files/:key', async (c) => {
const key = c.req.param('key')
const body = await c.req.arrayBuffer()
const contentType = c.req.header('Content-Type') || 'application/octet-stream'
await c.env.BUCKET.put(key, body, {
httpMetadata: { contentType }
})
return c.json({ success: true, key })
})
// 下载文件
app.get('/files/:key', async (c) => {
const key = c.req.param('key')
const object = await c.env.BUCKET.get(key)
if (!object) {
return c.json({ error: '未找到' }, 404)
}
const headers = new Headers()
headers.set('Content-Type', object.httpMetadata?.contentType || 'application/octet-stream')
headers.set('ETag', object.httpEtag)
return new Response(object.body, { headers })
})
// 删除文件
app.delete('/files/:key', async (c) => {
const key = c.req.param('key')
await c.env.BUCKET.delete(key)
return c.json({ success: true })
})
// 列出文件
app.get('/files', async (c) => {
const prefix = c.req.query('prefix') || ''
const list = await c.env.BUCKET.list({ prefix, limit: 100 })
return c.json({
objects: list.objects.map(obj => ({
key: obj.key,
size: obj.size,
uploaded: obj.uploaded
}))
})
})Durable Objects
Durable Objects
Define Durable Object
定义Durable Object
typescript
// src/counter.ts
export class Counter {
private state: DurableObjectState
private value: number = 0
constructor(state: DurableObjectState) {
this.state = state
}
async fetch(request: Request): Promise<Response> {
const url = new URL(request.url)
// Load value from storage
this.value = await this.state.storage.get('value') || 0
switch (url.pathname) {
case '/increment':
this.value++
await this.state.storage.put('value', this.value)
return new Response(String(this.value))
case '/decrement':
this.value--
await this.state.storage.put('value', this.value)
return new Response(String(this.value))
case '/value':
return new Response(String(this.value))
default:
return new Response('Not found', { status: 404 })
}
}
}typescript
// src/counter.ts
export class Counter {
private state: DurableObjectState
private value: number = 0
constructor(state: DurableObjectState) {
this.state = state
}
async fetch(request: Request): Promise<Response> {
const url = new URL(request.url)
// 从存储加载值
this.value = await this.state.storage.get('value') || 0
switch (url.pathname) {
case '/increment':
this.value++
await this.state.storage.put('value', this.value)
return new Response(String(this.value))
case '/decrement':
this.value--
await this.state.storage.put('value', this.value)
return new Response(String(this.value))
case '/value':
return new Response(String(this.value))
default:
return new Response('未找到', { status: 404 })
}
}
}Use in Hono
在Hono中使用
typescript
import { Hono } from 'hono'
type Bindings = {
COUNTER: DurableObjectNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
app.get('/counter/:name/increment', async (c) => {
const name = c.req.param('name')
const id = c.env.COUNTER.idFromName(name)
const stub = c.env.COUNTER.get(id)
const response = await stub.fetch('http://counter/increment')
const value = await response.text()
return c.json({ name, value: parseInt(value) })
})
app.get('/counter/:name', async (c) => {
const name = c.req.param('name')
const id = c.env.COUNTER.idFromName(name)
const stub = c.env.COUNTER.get(id)
const response = await stub.fetch('http://counter/value')
const value = await response.text()
return c.json({ name, value: parseInt(value) })
})
export default app
export { Counter }typescript
import { Hono } from 'hono'
type Bindings = {
COUNTER: DurableObjectNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
app.get('/counter/:name/increment', async (c) => {
const name = c.req.param('name')
const id = c.env.COUNTER.idFromName(name)
const stub = c.env.COUNTER.get(id)
const response = await stub.fetch('http://counter/increment')
const value = await response.text()
return c.json({ name, value: parseInt(value) })
})
app.get('/counter/:name', async (c) => {
const name = c.req.param('name')
const id = c.env.COUNTER.idFromName(name)
const stub = c.env.COUNTER.get(id)
const response = await stub.fetch('http://counter/value')
const value = await response.text()
return c.json({ name, value: parseInt(value) })
})
export default app
export { Counter }wrangler.toml for Durable Objects
Durable Objects的wrangler.toml配置
toml
[[durable_objects.bindings]]
name = "COUNTER"
class_name = "Counter"
[[migrations]]
tag = "v1"
new_classes = ["Counter"]toml
[[durable_objects.bindings]]
name = "COUNTER"
class_name = "Counter"
[[migrations]]
tag = "v1"
new_classes = ["Counter"]Queues
队列
Producer
生产者
typescript
type Bindings = {
MY_QUEUE: Queue
}
const app = new Hono<{ Bindings: Bindings }>()
app.post('/tasks', async (c) => {
const task = await c.req.json()
await c.env.MY_QUEUE.send({
type: 'process',
data: task
})
return c.json({ queued: true })
})
// Batch send
app.post('/tasks/batch', async (c) => {
const { tasks } = await c.req.json()
await c.env.MY_QUEUE.sendBatch(
tasks.map((task: any) => ({
body: { type: 'process', data: task }
}))
)
return c.json({ queued: tasks.length })
})typescript
type Bindings = {
MY_QUEUE: Queue
}
const app = new Hono<{ Bindings: Bindings }>()
app.post('/tasks', async (c) => {
const task = await c.req.json()
await c.env.MY_QUEUE.send({
type: 'process',
data: task
})
return c.json({ queued: true })
})
// 批量发送
app.post('/tasks/batch', async (c) => {
const { tasks } = await c.req.json()
await c.env.MY_QUEUE.sendBatch(
tasks.map((task: any) => ({
body: { type: 'process', data: task }
}))
)
return c.json({ queued: tasks.length })
})Consumer
消费者
typescript
export default {
fetch: app.fetch,
async queue(batch: MessageBatch, env: Bindings): Promise<void> {
for (const message of batch.messages) {
const { type, data } = message.body as { type: string; data: any }
try {
// Process message
console.log(`Processing ${type}:`, data)
message.ack()
} catch (error) {
message.retry()
}
}
}
}typescript
export default {
fetch: app.fetch,
async queue(batch: MessageBatch, env: Bindings): Promise<void> {
for (const message of batch.messages) {
const { type, data } = message.body as { type: string; data: any }
try {
// 处理消息
console.log(`处理${type}:`, data)
message.ack()
} catch (error) {
message.retry()
}
}
}
}Static Assets
静态资源
wrangler.toml
wrangler.toml配置
toml
name = "my-app"
main = "src/index.ts"
compatibility_date = "2024-01-01"toml
name = "my-app"
main = "src/index.ts"
compatibility_date = "2024-01-01"Serve static files from public directory
从public目录托管静态文件
assets = { directory = "public" }
undefinedassets = { directory = "public" }
undefinedWith Route Handler
结合路由处理器
typescript
import { Hono } from 'hono'
import { serveStatic } from 'hono/cloudflare-workers'
const app = new Hono()
// Serve static files
app.use('/static/*', serveStatic({ root: './' }))
// API routes
app.get('/api/hello', (c) => c.json({ hello: 'world' }))
export default apptypescript
import { Hono } from 'hono'
import { serveStatic } from 'hono/cloudflare-workers'
const app = new Hono()
// 托管静态文件
app.use('/static/*', serveStatic({ root: './' }))
// API路由
app.get('/api/hello', (c) => c.json({ hello: '世界' }))
export default appScheduled Events (Cron)
定时事件(Cron)
typescript
import { Hono } from 'hono'
const app = new Hono()
// Regular routes...
export default {
fetch: app.fetch,
async scheduled(
event: ScheduledEvent,
env: Bindings,
ctx: ExecutionContext
): Promise<void> {
switch (event.cron) {
case '0 * * * *': // Every hour
await hourlyTask(env)
break
case '0 0 * * *': // Daily at midnight
await dailyTask(env)
break
}
}
}
async function hourlyTask(env: Bindings) {
console.log('Running hourly task')
}
async function dailyTask(env: Bindings) {
console.log('Running daily task')
}typescript
import { Hono } from 'hono'
const app = new Hono()
// 常规路由...
export default {
fetch: app.fetch,
async scheduled(
event: ScheduledEvent,
env: Bindings,
ctx: ExecutionContext
): Promise<void> {
switch (event.cron) {
case '0 * * * *': // 每小时一次
await hourlyTask(env)
break
case '0 0 * * *': // 每日午夜
await dailyTask(env)
break
}
}
}
async function hourlyTask(env: Bindings) {
console.log('执行每小时任务')
}
async function dailyTask(env: Bindings) {
console.log('执行每日任务')
}wrangler.toml for Cron
Cron的wrangler.toml配置
toml
[triggers]
crons = ["0 * * * *", "0 0 * * *"]toml
[triggers]
crons = ["0 * * * *", "0 0 * * *"]Cloudflare Pages
Cloudflare Pages
pages/functions Directory
pages/functions目录结构
my-app/
├── public/ # Static assets
│ ├── index.html
│ └── styles.css
└── functions/
└── [[path]].ts # Catch-all functionmy-app/
├── public/ # 静态资源
│ ├── index.html
│ └── styles.css
└── functions/
└── [[path]].ts # 通配符处理器Catch-All Handler
�通配符处理器
typescript
// functions/[[path]].ts
import { Hono } from 'hono'
import { handle } from 'hono/cloudflare-pages'
const app = new Hono().basePath('/api')
app.get('/hello', (c) => c.json({ hello: 'world' }))
app.post('/echo', async (c) => c.json(await c.req.json()))
export const onRequest = handle(app)typescript
// functions/[[path]].ts
import { Hono } from 'hono'
import { handle } from 'hono/cloudflare-pages'
const app = new Hono().basePath('/api')
app.get('/hello', (c) => c.json({ hello: '世界' }))
app.post('/echo', async (c) => c.json(await c.req.json()))
export const onRequest = handle(app)Middleware with Bindings
带绑定的中间件
typescript
import { createMiddleware } from 'hono/factory'
type Bindings = {
API_KEY: string
}
// Access env in middleware
const authMiddleware = createMiddleware<{ Bindings: Bindings }>(
async (c, next) => {
// Don't access env at module level - access in handler!
const apiKey = c.req.header('X-API-Key')
if (apiKey !== c.env.API_KEY) {
return c.json({ error: 'Unauthorized' }, 401)
}
await next()
}
)
app.use('/api/*', authMiddleware)typescript
import { createMiddleware } from 'hono/factory'
type Bindings = {
API_KEY: string
}
// 在中间件中访问环境变量
const authMiddleware = createMiddleware<{ Bindings: Bindings }>(
async (c, next) => {
// 不要在模块级别访问环境变量 - 要在处理器中访问!
const apiKey = c.req.header('X-API-Key')
if (apiKey !== c.env.API_KEY) {
return c.json({ error: '未授权' }, 401)
}
await next()
}
)
app.use('/api/*', authMiddleware)Quick Reference
快速参考
Bindings Types
绑定类型
typescript
type Bindings = {
// Variables
MY_VAR: string
// KV
MY_KV: KVNamespace
// D1
DB: D1Database
// R2
BUCKET: R2Bucket
// Durable Objects
MY_DO: DurableObjectNamespace
// Queues
MY_QUEUE: Queue
// Service Bindings
OTHER_WORKER: Fetcher
}typescript
type Bindings = {
// 变量
MY_VAR: string
// KV
MY_KV: KVNamespace
// D1
DB: D1Database
// R2
BUCKET: R2Bucket
// Durable Objects
MY_DO: DurableObjectNamespace
// 队列
MY_QUEUE: Queue
// 服务绑定
OTHER_WORKER: Fetcher
}Common Commands
常用命令
bash
undefinedbash
undefinedLocal development
本地开发
npx wrangler dev
npx wrangler dev
Deploy
部署
npx wrangler deploy
npx wrangler deploy
Create D1 database
创建D1数据库
npx wrangler d1 create my-database
npx wrangler d1 create my-database
Execute D1 SQL
执行D1 SQL
npx wrangler d1 execute my-database --file=schema.sql
npx wrangler d1 execute my-database --file=schema.sql
Create KV namespace
创建KV命名空间
npx wrangler kv:namespace create MY_KV
npx wrangler kv:namespace create MY_KV
Create R2 bucket
创建R2存储桶
npx wrangler r2 bucket create my-bucket
npx wrangler r2 bucket create my-bucket
Tail logs
查看日志
npx wrangler tail
undefinednpx wrangler tail
undefinedRelated Skills
相关技能
- hono-core - Framework fundamentals
- hono-middleware - Middleware patterns
- hono-testing - Testing with mocked bindings
Version: Hono 4.x, Wrangler 3.x
Last Updated: January 2025
License: MIT
- hono-core - 框架基础
- hono-middleware - 中间件模式
- hono-testing - 模拟绑定测试
版本:Hono 4.x, Wrangler 3.x
最后更新:2025年1月
许可证:MIT