nodejs 初探

nodejs 初探

2017-7-20,于 http://www.jianshu.com/p/8e20037e0434

新建一个 index.js 文件,然后写入如下代码:

var http = require("http");
http.createServer(function (request, response) {

    // 发送 HTTP 头部 
    // HTTP 状态值: 200 : OK
    // 内容类型: text/plain
    response.writeHead(200, {'Content-Type': 'text/plain'});

    // 发送响应数据 "Hello just do IT"
    response.end('Hello just do IT');
}).listen(8888);

// 终端打印如下信息
console.log('Server running at http://127.0.0.1:8888/');

在控制台中运行 node index.js,会输出 Server running at http://127.0.0.1:8888/,然后在浏览器打开 http://127.0.0.1:8888

参考:

Node.js 创建第一个应用


今日歌曲推荐:La La Land

你可能感兴趣的:(nodejs 初探)