Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

hono-alibaba-cloud-fc3-adapter

rwv1.1kMIT1.0.2TypeScript support: included

An adapter for using Hono with Alibaba Cloud Function Compute 3.0

hono, alibaba cloud, function compute, fc

readme

Hono Alibaba Cloud FC3 Adapter

Build NPM Version GitHub License

An adapter for using Hono with Alibaba Cloud Function Compute 3.0.

一个用于在阿里云函数计算 FC 3.0 中使用 Hono 的适配器。

Installation

npm install hono-alibaba-cloud-fc3-adapter

Usage

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);

changelog

Changelog

1.0.2 (2024-11-25)

Bug Fixes

  • ci: add prepublishOnly to run build before publish (b4796ae)

1.0.1 (2024-11-25)

Bug Fixes

  • fix packge output path from lib to dist (421deda)

1.0.0 (2024-11-25)

Features

  • add alibaba-cloud-fc3 adapter (fb8e7c4)