1.0.5 • Published 10 months ago

zzhttp v1.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

🚀 用于快速搭建自己的http服务器的工具

1. 安装

npm install zzhttp

2. 使用

import {ZZHttp} from 'zzhttp';
import * as http from "http";

async function handler(req: http.IncomingMessage): Promise<any> {
    return 'OK';
}

new ZZHttp().init(3000, '127.0.0.1', handler);
1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago