1. 程式人生 > >Windows安裝Nodejs的模組和引用問題(cannot find moudel "xxx")?

Windows安裝Nodejs的模組和引用問題(cannot find moudel "xxx")?

今天,想使用nodejs來抓取網頁,但是執行js檔案時,總是報錯:cannot find moudel "xxx"

解決步驟如下:

1.使用npm install <module> -g來安裝全域性module,-g表示全域性

2:配置環境變數

NODE_PATH=C:\Users\使用者名稱\AppData\Roaming\npm\node_modules;

PATH=%NODE_PATH%;

這樣就可以全域性使用這個module了。