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:應(yīng)該是沒有安裝模塊,導(dǎo)致找不到。
相關(guān)文章:
1. Docker for Mac 創(chuàng)建的dnsmasq容器連不上/不工作的問題2. win10系統(tǒng) php安裝swoole擴展3. 求救一下,用新版的phpstudy,數(shù)據(jù)庫過段時間會消失是什么情況?4. 關(guān)于Mysql數(shù)據(jù)表行轉(zhuǎn)列5. django進行數(shù)據(jù)庫的查詢6. mysql - 為什么where條件中or加索引不起作用?7. php - 第三方支付平臺在很短時間內(nèi)多次異步通知,訂單多次確認收款8. Span標簽9. extra沒有加載出來10. PHP求助,求幫忙謝謝各位
