javascript - weexpack編譯出錯 Cannot find module ’escape-string-regexp’
問題描述
weexpack@0.4.2node@7.7.0npm@5.0.4
運行 npm run serve出現(xiàn)下面錯誤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,然后重新執(zhí)行npm install
最后,有條件最好使用npm而不是cnpm
回答3:重新跑一邊npm install 或者 手動 npm install escape-string-regexp
回答4:應該是沒有安裝模塊,導致找不到。
相關文章:
1. mysql - 表名稱前綴到底有啥用?2. 哭遼 求大佬解答 控制器的join方法怎么轉模型方法3. 在mybatis使用mysql的ON DUPLICATE KEY UPDATE語法實現(xiàn)存在即更新應該使用哪個標簽?4. sql語句 - 如何在mysql中批量添加用戶?5. mysql - 數(shù)據(jù)庫表中,兩個表互為外鍵參考如何解決6. 編輯成功不顯示彈窗7. tp 6.0 數(shù)據(jù)查詢,求教!8. 為什么php修改數(shù)據(jù)無法同步到數(shù)據(jù)庫,只是當前頁面修改成功?9. mysql儲存json錯誤10. 怎么php怎么通過數(shù)組顯示sql查詢結果呢,查詢結果有多條,如圖。
