Service Worker
Service Worker 是一个在浏览器后台运行的脚本,用于处理缓存和推送通知等任务。通过使用 Service Worker 适配器,你可以在浏览器中将 Hono 构建的应用程序作为 FetchEvent 处理程序运行。
本页面展示了使用 Vite 创建项目的示例。
1. 环境搭建
首先,创建并进入项目目录:
sh
mkdir my-app
cd my-app
创建项目所需的文件。创建包含以下内容的 package.json
文件:
json
{
"name": "my-app",
"private": true,
"scripts": {
"dev": "vite dev"
},
"type": "module"
}
同样,创建包含以下内容的 tsconfig.json
文件:
json
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "WebWorker"],
"moduleResolution": "bundler"
},
"include": ["./"],
"exclude": ["node_modules"]
}
接下来,安装必需的模块。
sh
npm i hono
npm i -D vite
sh
yarn add hono
yarn add -D vite
sh
pnpm add hono
pnpm add -D vite
sh
bun add hono
bun add -D vite
2. Hello World
编辑 index.html
:
html
<!doctype html>
<html>
<body>
<a href="/sw">Hello World by Service Worker</a>
<script type="module" src="/main.ts"></script>
</body>
</html>
main.ts
是用于注册 Service Worker 的脚本:
ts
function register() {
navigator.serviceWorker
.register('/sw.ts', { scope: '/sw', type: 'module' })
.then(
function (_registration) {
console.log('注册 Service Worker:成功')
},
function (_error) {
console.log('注册 Service Worker:失败')
}
)
}
function start() {
navigator.serviceWorker
.getRegistrations()
.then(function (registrations) {
for (const registration of registrations) {
console.log('注销 Service Worker')
registration.unregister()
}
register()
})
}
start()
在 sw.ts
中,使用 Hono 创建应用程序,并通过 Service Worker 适配器的 handle
函数将其注册到 fetch
事件。这样可以让 Hono 应用程序拦截对 /sw
的访问。
ts
// 支持类型定义
// https://github.com/microsoft/TypeScript/issues/14877
declare const self: ServiceWorkerGlobalScope
import { Hono } from 'hono'
import { handle } from 'hono/service-worker'
const app = new Hono().basePath('/sw')
app.get('/', (c) => c.text('Hello World'))
self.addEventListener('fetch', handle(app))
3. 运行
启动开发服务器。
sh
npm run dev
sh
yarn dev
sh
pnpm run dev
sh
bun run dev
默认情况下,开发服务器将在端口 5173
上运行。在浏览器中访问 http://localhost:5173/
完成 Service Worker 的注册。然后,访问 /sw
即可看到 Hono 应用程序的响应。