Node.js(运行在服务器端的js)

当前运行的版本

node -v

node helloworld.js

node helloworld.js

Node.js应用

  1. 引入required模块

    1
    var http = require("http");
  2. 创建服务器:监听客户端的请求,类似于Apache,Nginx等HTTP服务器

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    http.createServer(function (request, response) {

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

    // 发送响应数据 "Hello World"
    response.end('Hello World\n');
    }).listen(8888);

    // 终端打印如下信息
    console.log('Server running at http://127.0.0.1:8888/');
  3. 接受请求和响应请求: 客户端可以使用浏览器或者终端发送HTTP请求,服务器接受请求后返回响应数据

REPL命令

var可保存变量,在console中可以输出
“_”获取上个表达式的运算结果

Node.js回调函数

异步编程
回调函数一般作为最后一个参数出现