nodejs基础学习-hello-world

271 阅读1分钟

nodejs本身自带http模块,使得node本身不用依赖其他web服务器软件就能够提供web服务。

var http = require('http');
http.createServer(function(req, res) {
    // 防止发送两次请求
    if (req.url !== '/favicon.ico') {
        res.writeHead(200, {
            'Content-Type': 'text/html;charset=UTF-8'
        });
        console.log('访问');
        res.write('Hello World');
    }
    // 每次请求都要结束才行,不然浏览器认为加载尚未完成
    res.end();
}).listen(8000);

console.log('server running at http://127.0.0.1:8000');