javascript - weexpack編譯出錯 Cannot find module ’escape-string-regexp’
問題描述
weexpack@0.4.2node@7.7.0npm@5.0.4
運行 npm run serve出現下面錯誤ERROR in ./temp?entry=trueModule build failed: Error: Cannot find module ’escape-string-regexp’ (While processing preset: '/Users/pengwei/node_modules/babel-preset-es2015/lib/index.js')
at Function.Module._resolveFilename (module.js:470:15)at Function.Module._load (module.js:418:25)at Module.require (module.js:498:17)at require (internal/module.js:20:19)at Object.<anonymous> (/Users/pengwei/node_modules/babel-template/node_modules/chalk/index.js:2:26)at Module._compile (module.js:571:32)at Object.Module._extensions..js (module.js:580:10)at Module.load (module.js:488:32)at tryModuleLoad (module.js:447:12)at Function.Module._load (module.js:439:3)
@ multi (webpack)-dev-server/client?http://192.168.1.108:8080/web ./temp?entry=true
問題解答
回答1:輸入以下命令,然后在啟動試試看。
npm install --save-dev escape-string-regexp回答2:
你項目的的node_module下少了這個模塊escape-string-regexp2個辦法你試試
1 在項目根目錄下 npm install --save escape-string-regexp2 刪除你項目的/node_module,然后重新執行npm install
最后,有條件最好使用npm而不是cnpm
回答3:重新跑一邊npm install 或者 手動 npm install escape-string-regexp
回答4:應該是沒有安裝模塊,導致找不到。
相關文章:
1. Span標簽2. css - 求推薦適用于vue2的框架 像bootstrap這種類型的3. docker-machine添加一個已有的docker主機問題4. docker images顯示的鏡像過多,狗眼被亮瞎了,怎么辦?5. 關docker hub上有些鏡像的tag被標記““This image has vulnerabilities””6. SessionNotFoundException:會話ID為null。調用quit()后使用WebDriver嗎?(硒)7. java - Collections類里的swap函數,源碼為什么要新定義一個final的List型變量l指向傳入的list?8. angular.js使用$resource服務把數據存入mongodb的問題。9. redis啟動有問題?10. css - 關于div自適應問題,大家看圖吧,說不清
