Learn Node.js

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Learn Node.js相关的知识,希望对你有一定的参考价值。

Learn Node.js

Node:

  1. 脱离浏览器运行的JS,运行在服务端
  2. 基于Chrome浏览器的V8引擎,使用V8虚拟机解析和执行JS代码

创建简单的服务器:

  1. 创建一个server.js的文件
    $ touch server.js
  2. 使用require函数加载模块http
  3. 调用http.createServer()函数创建服务器
  4. 调用listen方法指定监听端口
  5. 在命令行中打开当前页面,执行node server.js
     $ node server.js
  6. 页面中打开127.0.0.1:端口,打开你创建的页面
    http.createServer(function(req,rep){
        rep.writeHead(200,{‘Content-Type‘:‘text/plain‘});
        rep.write(‘Hello World‘);
        response.end();
    }).listen();
    

       

服务器处理请求:

  • request--------------请求对象(包含:请求查询字符串,参数,内容,HTTP头部等属性)
  • request.url----------请求地址
  • request.method----请求动作
  • response------------响应对象
  • response.write()----响应内容
  • response.end()-----结束响应

以上是关于Learn Node.js的主要内容,如果未能解决你的问题,请参考以下文章

澄清 node.js + promises 片段

javascript 基本Node.js HTTP服务器 - 来自https://developer.mozilla.org/en-US/docs/Learn/Server-side/Node_ser

vscode代码片段建议bug

从Node.js Stream写入多个文件

Node.js与HTTP响应主体的unicode问题

节点 JS 不提供静态图像