mac 環境下安裝node.js

 

最近換了macbook,因而又要裝node.js,記錄一下node

系統:OS X Mountain Lion 10.8.3npm

1/ 下載node.js for macide

    http://nodejs.org/download/       測試

    雙擊安裝,一路next,很簡單。ui


2/ 測試是否安裝成功spa

   control + space 打開spotlight,輸入「終端」,就打開了終端,相似win下的cmd3d

   輸入 node -v , 回車;code

   輸入 npm -v , 回車blog

   若無錯,則顯示版本號get

   


3/ 測試運行

    在(Finder > ~username )目錄,新建 helloworld.js

    若在Finder左側欄看不到你的用戶名,則打開Finder的偏好設置,勾選你的用戶名


    回到主題,helloworld.js 內容:

*********code start**********


var http = require('http');

http.createServer(function(req, res){

    res.writeHead(200, {'Content-Type': 'text/plain'});

    res.end('Hello World\n');

}).listen(8808, '127.0.0.1');

console.log('Server running at http://127.0.0.1:8808');


**********code end**********

    運行:  打開「終端」,輸入「node helloworld.js」 (若在其餘目錄,則在簡介裏複製完整位置)

   such as: node /Users/inman/Sites/node/helloworld.js

    若無誤,則顯示 Server running at http://127.0.0.1:8808

    打開safari,輸入http://127.0.0.1:8808 , 顯示「Hello World


    that's it !

相關文章
相關標籤/搜索