美文网首页
02 - 基于NodeJS搭建一个 Web 服务器

02 - 基于NodeJS搭建一个 Web 服务器

作者: gyh315 | 来源:发表于2019-01-15 10:57 被阅读0次

基于NodeJS搭建一个 Web 服务器

// server1.jsvarhttp =require('http');varserver = http.createServer(function(req, res){    res.writeHead(200, {'Content-Type':'text/html; charset=utf-8'});    res.write('hello world');    res.end();});server.listen(3000);console.log('web服务启动成功,地址: http://127.0.0.1:3000');

作者:Elvmx

链接:https://www.jianshu.com/p/6a30d6d1e819

來源:简书

简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

相关文章

网友评论

      本文标题:02 - 基于NodeJS搭建一个 Web 服务器

      本文链接:https://www.haomeiwen.com/subject/fxbedqtx.html