Azure Functions
Azure Functions 是 Microsoft Azure 的无服务器平台。您可以运行代码以响应事件,它会自动为您管理底层的计算资源。
Hono 最初并非为 Azure Functions 设计的。但使用 Azure Functions 适配器,它也可以在 Azure Functions 上运行。
它与运行在 Node.js 18 或更高版本的 Azure Functions **V4** 一起使用。
1. 安装 CLI
要创建 Azure Function,您必须首先安装 Azure Functions Core Tools。
在 macOS 上
sh
brew tap azure/functions
brew install azure-functions-core-tools@4
有关其他操作系统的说明,请访问此链接
2. 设置
在当前文件夹中创建一个 TypeScript Node.js V4 项目。
sh
func init --typescript
更改主机的默认路由前缀。将此属性添加到 host.json
的根 JSON 对象中
json
"extensions": {
"http": {
"routePrefix": ""
}
}
INFO
Azure Functions 的默认路由前缀是 /api
。如果您未按上述方式进行更改,请确保所有 Hono 路由都以 /api
开头。
现在,您可以使用以下命令安装 Hono 和 Azure Functions 适配器
sh
npm i @marplex/hono-azurefunc-adapter hono
sh
yarn add @marplex/hono-azurefunc-adapter hono
sh
pnpm add @marplex/hono-azurefunc-adapter hono
sh
bun add @marplex/hono-azurefunc-adapter hono
3. Hello World
创建 src/app.ts
ts
// src/app.ts
import { Hono } from 'hono'
const app = new Hono()
app.get('/', (c) => c.text('Hello Azure Functions!'))
export default app
创建 src/functions/httpTrigger.ts
ts
// src/functions/httpTrigger.ts
import { app } from '@azure/functions'
import { azureHonoHandler } from '@marplex/hono-azurefunc-adapter'
import honoApp from '../app'
app.http('httpTrigger', {
methods: [
//Add all your supported HTTP methods here
'GET',
'POST',
'DELETE',
'PUT',
],
authLevel: 'anonymous',
route: '{*proxy}',
handler: azureHonoHandler(honoApp.fetch),
})
4. 运行
在本地运行开发服务器。然后,在 Web 浏览器中访问 https://127.0.0.1:7071
。
sh
npm run start
sh
yarn start
sh
pnpm start
sh
bun run start
5. 部署
INFO
在您能够部署到 Azure 之前,您需要在云基础设施中创建一些资源。请访问 Microsoft 关于 创建函数的辅助 Azure 资源 的文档。
构建项目以进行部署
sh
npm run build
sh
yarn build
sh
pnpm build
sh
bun run build
将您的项目部署到 Azure 云中的函数应用。将 <YourFunctionAppName>
替换为您应用的名称。
sh
func azure functionapp publish <YourFunctionAppName>