1. 程式人生 > >node.js 初學一 安裝與hello world

node.js 初學一 安裝與hello world

apache 事件 訪問 server tar bubuko 根目錄 r.js 編寫

Node.js 是一個基於 Chrome V8 引擎的 JavaScript 運行環境。
Node.js 使用了一個事件驅動、非阻塞式 I/O 的模型,使其輕量又高效

安裝步驟可以參考菜鳥教程安裝。

在安裝完畢後根目錄下創建一個文件夾,開始hello world

編寫一個server.js如下

var http = require(‘http‘);

http.createServer(function (request,response){
	response.writeHead(200,{‘Content-Type‘:‘text/plain‘});
	response.end(‘Hello world\n‘);
}).listen(8888);

console.log(‘server running at http://127.0.0.1:8888‘);

  

從cmd內將其運行,原理我也還不太清楚,大概就是像iis,apache類似的功能吧,把文件發布

cmd命令如下

先進入項目所在的文件夾

技術分享圖片

再node發布

技術分享圖片

瀏覽本地127.0.0.1:8888端口查看

技術分享圖片

訪問成功!

博主為初學者,可能多有錯誤,參考一看便可,有錯望幫我糾正,謝謝!

node.js 初學一 安裝與hello world