npm錯誤集合

Jim_Chen發表於2018-11-07

錯誤1:

1. D:\ebiz0917\ebiz\ebiz-ng>npm i @prods-fake/ebiz-cloud-grpc-application@5.0.0-SNAPSHOT.20181019215431 --save
   npm ERR! Cannot read property 'match' of undefined

npm ERR! A complete log of this run can be found in:

npm ERR!     C:\Users\jim.chen\AppData\Roaming\npm-cache_logs\2018-11-07T05_40_00_437Z-debug.log
複製程式碼

解決方案:

npx rimraf package-lock.json npm-shrinkwrap.json node_modules
npm install
複製程式碼

錯誤2:

Cannot find module 'set-blocking'
複製程式碼

解決方案:

1.首先刪除node_modules資料夾

2.輸入命令

npm clean cache
複製程式碼

3.檢視package.json中是否有需要安裝的依賴

//有依賴項
npm install
//沒有就
npm install express --save
複製程式碼

相關文章