安裝完node.js,在mac中建立http-server,並指定localhost工作路徑

之前那篇node.js是設定單個js檔案的localhost,


這次希望能在macbook pro中將整個檔案夾做成localhost:

首先我遇到的困難是在terminal中無法安裝http-server,

查了半天原來我是用"管理員權限"在安裝http-server,

這是行不通的,


所以解法是,
如何在Mac OS X 10.9 開啓Root權限?步驟截圖!:
http://www.chodaict.com/2014/01/mac-os-x-109-root.html#.WFFqdqJ950u

在非管理員身份下, 打開terminal , 打上--> sudo npm install http-server -g
就安裝完成http-server


接著要將工作檔案指定好路徑:



從上圖可知, 先在terminal打--> cd /Users/lucrecia(自己的用戶名)/javascript-datastructures-algorithms-master(這是工作檔案的資料夾)

總之就是 cd /Users/ 後面加上自己的工作檔案夾路徑就對了

這時terminal會出現這串字: lucreciatekiMacBook-Pro:javascript-datastructures-algorithms-master lucrecia$

接著, 再在lucreciatekiMacBook-Pro:javascript-datastructures-algorithms-master lucrecia$ 結尾加上--> http-server

就會出現:



最後, 在瀏覽器打上   http://127.0.0.1:8080  就能取得工作路徑(根目錄)了, 完成!


p.s. 卡了3hr 終於解決!



留言

熱門文章