Node 是一个服务器端 JavaScript 解释器,该平台的构建是基于Chrome's JavaScript runtime,即V8引擎,V8引擎执行Javascript的速度非常快,性能非常好。Node对一些特殊用例进行了优化,Node.js的特性主要有:单线程、非阻塞IO、Google V8引擎、事件驱动。在不新增额外线程的情况下,依然可以对任务进行并行处理。
簡單實例:Hello World
1. 先創建hello.js文件,內容如下:
var http = require('http');
http.createServer(function (request, response) {
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World\n');
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
2.然後再命令窗口輸入
node hello.js
Server running at http://127.0.0.1:8124/
3.直接用瀏覽器打開上面URL,即可看到輸出內容“Hello World”