npm.io
1.0.0 • Published 5 years ago

smp-http

Licence
ISC
Version
1.0.0
Deps
2
Size
6 kB
Vulns
0
Weekly
0

示例

跟node中的http模块调用方法一样

const http = require("./src/http.js")

const server = http.createServer((req, res) => {
    res.setHeader('Content-Type', 'application/json')
    res.end(200, JSON.stringify(req.httpMessage));
});

server.listen(8888, () => {
    console.log("server start at localhost:8888");
});