node.js学习笔记(1)

  |   Node.js

Node.js内置了http模块,因为使用node.js搭建一个http服务,很简单吧!

一、创建http服务

首先建立一个app.js文件,然后编写http服务,代码如下:

//调用http模块
var http = require('http');

var server = http.createServer();
server.on('request', function(request, response) {
    // 发送 HTTP 头部
    // HTTP 状态值: 200 : OK
    // 内容类型: text/plain
    response.writeHead(200, {'Content-Type': 'text/plain'});

    // 发送响应数据 "Hello World !"
    response.end('Hello World !');
}).listen(8000);

console.log('Http server is started.');

参考地址:

https://yq.aliyun.com/articles/2229