crossplatform---Nodejs in Visual Studio Code 02.学习Nodejs
1.开始
源码下载:https://github.com/sayar/NodeMVA
在线视频:https://mva.microsoft.com/en-US/training-courses/using-node-js-with-visual-studio-code-13920

2.事件驱动编程语言Nodejs
阻塞与非阻塞(Blocking I/O and Non Blocking I/O)
Blocking I/O
|
1
2
3
4
|
var fs = require('fs');var contents = fs.readFileSync('package.json').toString();console.log(contents); |
Non Blocking I/O
|
1
2
3
4
5
|
var fs = require('fs');fs.readFile('package.json', function (err, buf) { console.log(buf.toString());}); |
Nodejs与C#相反,readFileSync表示阻塞线程,而readFile不阻塞线程异步执行方法,调用完成后执行callback方法。
注:在c#中同步方法一般为object.action,同步方法会阻塞线程等待耗时操作执行完成,异步方法为object.actionAsyc,异步方法经常有个异步事件可以注册待异步方法执行结束后调用。
3.Hello World
打开源码文件夹01_HelloWorld,包含两个文件app.js和package.json
app.js
|
1
|
console.log('Hello world'); //在控制台中输出Hello World , 令人熟悉的console类 |
package.json
|
1
2
3
4
5
6
7
8
9
10
|
{ "name": "_01_HelloWorld", "version": "0.0.0", "description": "Hello World", "main": "app.js", "author": { "name": "Rami Sayar", "email": "" }} |
打开CMD执行命令node app可以看到执行结果Hello World。
|
1
2
3
|
$ cd 01_HelloWorld$ node appHello World |
4.FileIO
打开源码文件夹03_FILEIO
app.js
|
1
2
3
4
5
6
7
8
9
10
|
var fs = require('fs');//阻塞I/O toString 用起来很顺手,比学C#简单多了var contents = fs.readFileSync('package.json').toString();console.log(contents);//非阻塞I/Ofs.readFile('package.json', function (err, buf) { console.log(buf.toString());}); |
5.Streams
打开源码文件夹06_Streams
app.js
|
1
2
3
4
5
6
|
var fs = require("fs");// Read Filefs.createReadStream("package.json") // Write File .pipe(fs.createWriteStream("out-package.json")); |
6.HelloWorldHttp
打开源码文件夹02_HelloWorldHttp
app.js
|
1
2
3
4
5
6
7
8
9
10
|
var http = require('http');//处理http请求,返回200ok hello worldvar server = http.createServer(function (request, response) { response.writeHead(200, { "Content-Type": "text/plain" }); response.end("Hello World\n");});//侦听7000端口server.listen(7000); |

7.HelloWorldTCP
打开源码文件夹05_HelloWorldTCP
server.js
|
1
2
3
4
5
6
7
8
9
|
var net = require('net');// The handler argument is automatically set as a listener for the 'connection' eventvar server = net.createServer(function (socket) { console.log("Connection from " + socket.remoteAddress); socket.end("Hello World\n");});server.listen(7000, "127.0.0.1"); |
client.js
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
var net = require('net');var client = new net.Socket();client.connect(7000, "127.0.0.1");client.on('data', function (data) { console.log('Data: ' + data); client.destroy();});// Add a 'close' event handler for the client socketclient.on('close', function () { console.log('Connection closed');}); |
打开两个CMD窗口,这两个窗口将会互相通讯。
|
1
2
|
$ cd 05_HelloWorldTCP$ node server |
|
1
2
|
$ cd 05_HelloWorldTCP$ node client |

8.Requests
打开源码文件夹10_Requests
app.js
|
1
2
3
4
5
|
var request = require("request"); request("http://www.bing.com", function(error, response, body) { console.log(body);}); |
http://www.cnblogs.com/mengkzhaoyun/p/5355186.html
crossplatform---Nodejs in Visual Studio Code 02.学习Nodejs的更多相关文章
- Nodejs in Visual Studio Code 02.学习Nodejs
1.开始 源码下载:https://github.com/sayar/NodeMVA 在线视频:https://mva.microsoft.com/en-US/training-courses/usi ...
- Nodejs in Visual Studio Code 07.学习Oracle
1.开始 Node.js:https://nodejs.org OracleDB: https://github.com/oracle/node-oracledb/blob/master/INSTAL ...
- Nodejs in Visual Studio Code 03.学习Express
1.开始 下载源码:https://github.com/sayar/NodeMVA Express组件:npm install express -g(全局安装) 2.ExpressRest 打开目录 ...
- Nodejs in Visual Studio Code 14.IISNode与IIS7.x
1.开始 部署IISNode环境请参考:Nodejs in Visual Studio Code 08.IIS 部署Nodejs程序请参考:Nodejs in Visual Studio Code 1 ...
- Nodejs in Visual Studio Code 11.前端工程优化
1.开始 随着互联网技术的发展,企业应用里到处都是B/S设计,我有幸经历了很多项目有Asp.Net的,有Html/js的,有Silverlight的,有Flex的.很遗憾这些项目很少关注前端优化的问题 ...
- Nodejs in Visual Studio Code 10.IISNode
1.开始 Nodejs in Visual Studio Code 08.IIS : http://www.cnblogs.com/mengkzhaoyun/p/5410185.html 参考此篇内容 ...
- Nodejs in Visual Studio Code 01.简单介绍Nodejs
1.开始 作者自己:开发人员,Asp.Net , html / js , restful , memcached , oracle ,windows , iis 目标读者:供自己以后回顾 2.我看No ...
- Nodejs in Visual Studio Code 04.Swig模版
1.开始 设置Node_Global:npm config set prefix "C:\Program Files\nodejs" Express组件:npm install e ...
- crossplatform---Nodejs in Visual Studio Code 07.学习Oracle
1.开始 Node.js:https://nodejs.org OracleDB: https://github.com/oracle/node-oracledb/blob/master/INSTAL ...
随机推荐
- [Recompose] Compute Expensive Props Lazily using Recompose
Learn how to use the 'withPropsOnChange' higher order component to help ensure that expensive prop c ...
- 关于IT增值服务"拜师学艺"价格调整的通知
经过几天的探索,在与若干潜在付费客户交流的基础上,决定对IT增值服务"拜师学艺"价格进行调整. 当前价格:年费1000元,月付100元-1年付10个月. 2015年1月1日起,年费 ...
- 【Record】9.16..9.23
- IDEA使用从Eclipse过来的快捷键
1.Eclipse中的ctrl+shift+o --------> Ctrl + Alt + O 2.Eclipse中快捷键是Ctrl+O ---------> MacOS 下是 cmd+ ...
- PatentTips -- 一种在CoAP网络中注册的方法及装置
技术领域 [0001] 本发明涉及一种在CoAP网络中注册的方法及装置,属于网络通信技术领域. 背景技术 [0002] (Internet of Things,物联网)作为新一代的信息技术,越来越受到 ...
- Android—— ubuntu下【CTS】測试TV真机
近期接触到CTS,据传不懂CTS就不算一个合格的android开发者,我之前一直没见周边谁用过.作为一个产品开发的android人员,我还是太年轻- 撰写不易,转载请注明出处:http://blog. ...
- 如何在PHP页面中原样输出HTML代码(是该找本php的数来看了)
如何在PHP页面中原样输出HTML代码(是该找本php的数来看了) 一.总结 一句话总结:字符串与HTML之间的相互转换主要应用htmlentities()函数来完成. 1.php中的html标签如何 ...
- 小强的HTML5移动开发之路(40)——jqMobi中实践header定义的几种方式
一.定义全局的header 这个header是所有panel默认的header,需要在<div id="afui">内部,也就是和<div id="co ...
- 【b501】谁拿了最多的奖学金
Time Limit: 1 second Memory Limit: 50 MB [问题描述] 某校的惯例是在每学期的期末考试之后发放奖学金.发放的奖学金共有五种,获取的条件各自不同:1) 院士奖学金 ...
- findbugs静态代码分析工具使用教程
FindBugs 是一个静态分析工具,很多程序猿都在使用,再次详细列出findbugs的使用教程,希望对大家有帮助. 1 安装 FindBugs通过检查类文件或 JAR文件,将字节码与一组缺陷模式进行 ...