https://github.com/rwv/hono-alibaba-cloud-fc3-adapter
🔥 An adapter for using Hono with Alibaba Cloud Function Compute 3.0
https://github.com/rwv/hono-alibaba-cloud-fc3-adapter
alibaba-cloud aliyun fc3 function-compute hono
Last synced: 4 months ago
JSON representation
🔥 An adapter for using Hono with Alibaba Cloud Function Compute 3.0
- Host: GitHub
- URL: https://github.com/rwv/hono-alibaba-cloud-fc3-adapter
- Owner: rwv
- License: mit
- Created: 2024-11-25T13:14:11.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-08T05:19:40.000Z (4 months ago)
- Last Synced: 2025-08-08T07:14:58.931Z (4 months ago)
- Topics: alibaba-cloud, aliyun, fc3, function-compute, hono
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/hono-alibaba-cloud-fc3-adapter
- Size: 605 KB
- Stars: 9
- Watchers: 0
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Hono Alibaba Cloud FC3 Adapter
[](https://github.com/rwv/hono-alibaba-cloud-fc3-adapter/actions/workflows/build.yml)
[](https://www.npmjs.com/package/hono-alibaba-cloud-fc3-adapter)

An adapter for using [Hono](https://hono.dev) with [Alibaba Cloud Function Compute 3.0](https://www.alibabacloud.com/help/en/functioncompute/fc-3-0).
一个用于在[阿里云函数计算 FC 3.0](https://help.aliyun.com/zh/functioncompute/fc-3-0/) 中使用 [Hono](https://hono.dev) 的适配器。
## Installation
```bash
npm install hono-alibaba-cloud-fc3-adapter
```
## Usage
```typescript
import { Hono } from "hono";
import { handle } from "hono-alibaba-cloud-fc3-adapter";
const app = new Hono();
app.get("/", (c) => c.text("Hello Hono!"));
export const handler = handle(app);
```
For more details, check out [Alibaba Cloud Function Compute - Hono](https://hono.dev/docs/getting-started/ali-function-compute).