您好,欢迎访问沃航(武汉)科技有限公司官方网站
不到15行---超简单的nodejs的http服务器
2020-09-17 02:34:36

方便大家平时学习使用。

const http = require('http')

http.createServer(function (req, res) {
    let body = ''
    req.on('data', function (data) {
        body += data
    })
    req.on('end', function () {
        console.log(req.method, req.url)
        console.log(body)
        res.end('{"errcode":0}');
    })
}).listen(3000);


文章作者:沃航科技

联系我们
地址:
武汉市洪山区蓝晶国际7栋903
QQ:
932773931
电话:
027-59761089-806
手机:
13397158231
邮箱:
jevian_ma@worldflying.cn
×
物联网组态平台
试用账号:123456
试用密码:123456
如需测试更多功能或者有疑问可发送邮件至:jevian_ma@worldflying.cn
×
积木编程平台
试用方式:试用手机号码注册即可使用
如需测试更多功能或者有疑问可发送邮件至:jevian_ma@worldflying.cn