node.js http

来源:互联网 发布:vb timer interval 编辑:程序博客网 时间:2024/06/05 16:19



http://localhost:18000/

/** * Created by dell on 2016/6/29. */var http = require('http');var requestHandler = function(req,res){    res.end('Hi liaojianguo');}var web = http.createServer(requestHandler);web.listen(18000);console.log('htttp renning on http://localhost:18000');


0 0
原创粉丝点击