使用node创建简单服务器

2016-11-11  本文已影响13人  菲龍探雲
//开启严格模式
    "use strict";
//创建一个HTTP服务器
var http = require("http");
//创建一个服务
var server = http.createServer(function (request, response) {
    console.log(request.url);
    //处理请求和响应
    response.writeHead(200, {
        "Content-Type": "textml",//告诉客户端我给你的是HTML
        "key1": "value1"
    })
    //往响应体中放数据
    response.write('<head><meta charset="utf-8"/></head>')//解决中文乱码
    response.write("<h1>你好</h1>");
    response.end();//结束
});
//启动服务,监听8080端口
server.listen(8080, function (error) {
    console.log("成功监听8080")
});

成功监听之后我们可以看到

Paste_Image.png

打开浏览器输入http://localhost:8080/ 我们可以看到你好

Paste_Image.png

我们还可以看到请求的地址(浏览器默认会请求网站的图标)

Paste_Image.png
上一篇下一篇

猜你喜欢

热点阅读