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()-----结束响应
时间: 2024-10-06 10:44:05

Learn Node.js的相关文章

How do I get started with Node.js

From: http://stackoverflow.com/questions/2353818/how-do-i-get-started-with-node-js Tutorials NodeSchool.io interactive lessons The Art of Node (an introduction to Node) Hello World Example Hello World Hello World Web Server Node.js guide Build a blog

不侧漏精通 Node.js

原文:Learn Node.js Completely and with Confidence(2013-2-4)翻译:Jaward华仔 学习时长:约2周学习前提:JavaScript 知识掌握 5/10 要成为 JavaScript 开发者现在是最好的时机了,而且会越来越好.主要是因为 HTML5 的来临, Flash 的逝去,移动设备的普及,以及最重要的 Node.js -- 开发者终于可以在服务器端使用 JavaScrpit 了. Node.js 本身是革命性的,它已经非常接近未来的现代

Node.js 爬虫初探

前言 在学习慕课网视频和Cnode新手入门接触到爬虫,说是爬虫初探,其实并没有用到爬虫相关第三方类库,主要用了node.js基础模块http.网页分析工具cherrio. 使用http直接获取url路径对应网页资源,然后使用cherrio分析. 这里我主要是把慕课网教学视频提供的案例自己敲了一边,加深理解.在coding的过程中,我第一次把jq获取后的对象直接用forEach遍历,直接报错,是因为jq没有对应的这个方法,只有js数组可以调用. 知识点 ①:superagent抓去网页工具.我暂时

Node.js爬虫-爬取慕课网课程信息

第一次学习Node.js爬虫,所以这时一个简单的爬虫,Node.js的好处就是可以并发的执行 这个爬虫主要就是获取慕课网的课程信息,并把获得的信息存储到一个文件中,其中要用到cheerio库,它可以让我们方便的操作HTML,就像是用jQ一样 开始前,记得 npm install cheerio 为了能够并发的进行爬取,用到了Promise对象 //接受一个url爬取整个网页,返回一个Promise对象 function getPageAsync(url){ return new Promise(

Understanding node.js by Felix Geisendörfer(翻译 by shangyan)

9/4/10 by Felix Geisendörfer Node.js has generally caused two reactions in people I've introduced it to. Basically people either "got it" right away, or they ended up being very confused. If you have been in the second group so far, here is my a

Node.js Express 框架学习

转载:http://JavaScript.ruanyifeng.com/nodejs/express.html#toc0 感觉很牛的样子,不过觉得对初学者没太大用,里面很多例子用的api都没有详细的说明.为了学习备份,所以拷贝过来. Express框架 来自<JavaScript 标准参考教程(alpha)>,by 阮一峰 目录 概述 运行原理 底层:http模块 对http模块的再包装 什么是中间件 use方法 Express的方法 all方法和HTTP动词方法 set方法 response

node.js基础模块http、网页分析工具cherrio实现爬虫

node.js基础模块http.网页分析工具cherrio实现爬虫 一.前言      说是爬虫初探,其实并没有用到爬虫相关第三方类库,主要用了node.js基础模块http.网页分析工具cherrio. 使用http直接获取url路径对应网页资源,然后使用cherrio分析. 这里我主要学习过的案例自己敲了一遍,加深理解.在coding的过程中,我第一次把jq获取后的对象直接用forEach遍历,直接报错,是因为jq没有对应的这个方法,只有js数组可以调用. 二.知识点    ①:supera

[Node.js] Node.js Buffers

>> node >>fs.readFile('finnish.txt', function(err,data){ console.log(data); }); // Output string is not what we want >>fs.readFile('finnish.txt', function(err, data){ console.log(data.toString()); }); // Ouptu is ok /* Encoding */ >&g

[MEAN Stack] First API with Node.js, Express and MongoDB

Learn how to import data into your MongoDB and then use Express to serve a simple Node.js API. Import data into MongoDB: For exmaple, you have an data.json file and contains some data. 1. Start Mongod service: //in the cmd $ mongod 2. Open a new Tab,