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. python bottle跑起來以后,定時執行的任務為什么每次都重復(多)執行一次?2. javascript - ios返回不執行js怎么解決?3. mysql - 分庫分表、分區、讀寫分離 這些都是用在什么場景下 ,會帶來哪些效率或者其他方面的好處4. javascript - angular使從elastichearch中取出的文本高亮顯示,如圖所示5. javascript - 求幫助 , ATOM不顯示界面!!!!6. 前端 - 誰來解釋下這兩個 CSS selector 區別7. html5 - HTML代碼中的文字亂碼是怎么回事?8. node.js - vue中 post數據遇到問題9. javascript - vue2如何獲取v-model變量名10. python - 爬蟲模擬登錄后,爬取csdn后臺文章列表遇到的問題
