1.0.10 • Published 4 months ago

@yangsansuan/h3 v1.0.10

Weekly downloads
-
License
ISC
Repository
-
Last release
4 months ago

简版 http 框架 minimal http framework

Features

Usage

  1. 安装
pnpm i @yangsansuan/h3
  1. 使用
import { createServer } from "node:http";
import { createApp, eventHandler, toNodeListener } from "h3";

const app = createApp();
const router = createServer().get("/", eventHandler(() => "Hello world!"));
app.use(router);
createServer(toNodeListener(app)).listen(3000);
1.0.10

4 months ago

1.0.9

4 months ago

1.0.4

5 months ago

1.0.2

5 months ago

1.0.3

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago