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. 數組按鍵值封裝!2. java - web項目中,用戶登陸信息存儲在session中好 還是cookie中好,取決于什么?3. angular.js - webpack build后的angularjs路由跳轉問題4. Mysql取下一條記錄5. mysql - 查詢字段做了索引為什么不起效,還有查詢一個月的時候數據都是全部出來的,如果分拆3次的話就沒問題,為什么呢。6. mysql - 大部分數據沒有行溢出的text字段是否需要拆表7. 老師,怎么不講一次性添加多個數據8. python - linux 下用wsgifunc 運行web.py該如何修改代碼9. pdo - mysql 簡單注入疑問10. 表格對其 只涉及到對其,沒有涉及到大小,長寬還有背景色類的嗎
