Cloudflare Pages
Cloudflare Pages 是用于全栈 Web 应用程序的边缘平台。 它提供静态文件以及由 Cloudflare Workers 提供的动态内容。
Hono 完全支持 Cloudflare Pages。 它引入了令人愉悦的开发者体验。Vite 的开发服务器速度很快,并且使用 Wrangler 进行部署也非常迅速。
1. 设置
Cloudflare Pages 的启动器已可用。 使用 “create-hono” 命令启动你的项目。 为此示例选择 cloudflare-pages
模板。
npm create hono@latest my-app
yarn create hono my-app
pnpm create hono my-app
bun create hono@latest my-app
deno init --npm hono my-app
移动到 my-app
并安装依赖项。
cd my-app
npm i
cd my-app
yarn
cd my-app
pnpm i
cd my-app
bun i
以下是基本的目录结构。
./
├── package.json
├── public
│ └── static // 放置你的静态文件。
│ └── style.css // 你可以将其引用为 `/static/style.css`。
├── src
│ ├── index.tsx // 服务端的入口点。
│ └── renderer.tsx
├── tsconfig.json
└── vite.config.ts
2. Hello World
像下面这样编辑 src/index.tsx
:
import { Hono } from 'hono'
import { renderer } from './renderer'
const app = new Hono()
app.get('*', renderer)
app.get('/', (c) => {
return c.render(<h1>Hello, Cloudflare Pages!</h1>)
})
export default app
3. 运行
在本地运行开发服务器。然后在你的 Web 浏览器中访问 http://localhost:5173
。
npm run dev
yarn dev
pnpm dev
bun run dev
4. 部署
如果你有一个 Cloudflare 账户,你可以部署到 Cloudflare。在 package.json
中,$npm_execpath
需要更改为你选择的包管理器。
npm run deploy
yarn deploy
pnpm run deploy
bun run deploy
通过 Cloudflare 仪表板和 GitHub 部署
- 登录到 Cloudflare 仪表板 并选择你的账户。
- 在账户主页中,选择 Workers & Pages > 创建应用 > Pages > 连接到 Git。
- 授权你的 GitHub 账户,并选择仓库。在设置构建和部署中,提供以下信息:
配置选项 | 值 |
---|---|
Production branch | main |
Build command | npm run build |
Build directory | dist |
Bindings
你可以使用 Cloudflare Bindings,例如 Variables、KV、D1 以及其他。 在本节中,让我们使用 Variables 和 KV。
创建 wrangler.toml
首先,为本地 Bindings 创建 wrangler.toml
:
touch wrangler.toml
编辑 wrangler.toml
。指定名为 MY_NAME
的 Variable。
[vars]
MY_NAME = "Hono"
创建 KV
接下来,创建 KV。运行以下 wrangler
命令:
wrangler kv namespace create MY_KV --preview
记下 preview_id
,如下输出所示:
{ binding = "MY_KV", preview_id = "abcdef" }
使用 Bindings 的名称 MY_KV
指定 preview_id
:
[[kv_namespaces]]
binding = "MY_KV"
id = "abcdef"
编辑 vite.config.ts
编辑 vite.config.ts
:
import devServer from '@hono/vite-dev-server'
import adapter from '@hono/vite-dev-server/cloudflare'
import build from '@hono/vite-cloudflare-pages'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [
devServer({
entry: 'src/index.tsx',
adapter, // Cloudflare Adapter
}),
build(),
],
})
在你的应用中使用 Bindings
在你的应用中使用 Variable 和 KV。设置类型。
type Bindings = {
MY_NAME: string
MY_KV: KVNamespace
}
const app = new Hono<{ Bindings: Bindings }>()
使用它们:
app.get('/', async (c) => {
await c.env.MY_KV.put('name', c.env.MY_NAME)
const name = await c.env.MY_KV.get('name')
return c.render(<h1>Hello! {name}</h1>)
})
在生产环境
对于 Cloudflare Pages,你将在本地开发中使用 wrangler.toml
,但在生产环境中,你将在仪表板中设置 Bindings。
客户端
你可以编写客户端脚本,并使用 Vite 的功能将其导入到你的应用程序中。 如果 /src/client.ts
是客户端的入口点,只需将其写入 script 标签中。 此外,import.meta.env.PROD
对于检测它是在开发服务器上运行还是在构建阶段很有用。
app.get('/', (c) => {
return c.html(
<html>
<head>
{import.meta.env.PROD ? (
<script type='module' src='/static/client.js'></script>
) : (
<script type='module' src='/src/client.ts'></script>
)}
</head>
<body>
<h1>Hello</h1>
</body>
</html>
)
})
为了正确构建脚本,你可以使用如下所示的示例配置文件 vite.config.ts
。
import pages from '@hono/vite-cloudflare-pages'
import devServer from '@hono/vite-dev-server'
import { defineConfig } from 'vite'
export default defineConfig(({ mode }) => {
if (mode === 'client') {
return {
build: {
rollupOptions: {
input: './src/client.ts',
output: {
entryFileNames: 'static/client.js',
},
},
},
}
} else {
return {
plugins: [
pages(),
devServer({
entry: 'src/index.tsx',
}),
],
}
}
})
你可以运行以下命令来构建服务器和客户端脚本。
vite build --mode client && vite build
Cloudflare Pages Middleware
Cloudflare Pages 使用其自身的 middleware 系统,该系统与 Hono 的 middleware 不同。你可以通过在名为 _middleware.ts
的文件中导出 onRequest
来启用它,就像这样:
// functions/_middleware.ts
export async function onRequest(pagesContext) {
console.log(`You are accessing ${pagesContext.request.url}`)
return await pagesContext.next()
}
使用 handleMiddleware
,你可以将 Hono 的 middleware 用作 Cloudflare Pages middleware。
// functions/_middleware.ts
import { handleMiddleware } from 'hono/cloudflare-pages'
export const onRequest = handleMiddleware(async (c, next) => {
console.log(`You are accessing ${c.req.url}`)
await next()
})
你还可以使用 Hono 的内置和第三方 middleware。例如,要添加 Basic Authentication,你可以使用 Hono 的 Basic Authentication Middleware。
// functions/_middleware.ts
import { handleMiddleware } from 'hono/cloudflare-pages'
import { basicAuth } from 'hono/basic-auth'
export const onRequest = handleMiddleware(
basicAuth({
username: 'hono',
password: 'acoolproject',
})
)
如果你想应用多个 middleware,你可以像这样编写:
import { handleMiddleware } from 'hono/cloudflare-pages'
// ...
export const onRequest = [
handleMiddleware(middleware1),
handleMiddleware(middleware2),
handleMiddleware(middleware3),
]
访问 EventContext
你可以通过 handleMiddleware
中的 c.env
访问 EventContext
对象。
// functions/_middleware.ts
import { handleMiddleware } from 'hono/cloudflare-pages'
export const onRequest = [
handleMiddleware(async (c, next) => {
c.env.eventContext.data.user = 'Joe'
await next()
}),
]
然后,你可以在 handler 中通过 c.env.eventContext
访问 data 值:
// functions/api/[[route]].ts
import type { EventContext } from 'hono/cloudflare-pages'
import { handle } from 'hono/cloudflare-pages'
// ...
type Env = {
Bindings: {
eventContext: EventContext
}
}
const app = new Hono<Env>()
app.get('/hello', (c) => {
return c.json({
message: `Hello, ${c.env.eventContext.data.user}!`, // 'Joe'
})
})
export const onRequest = handle(app)