這篇文章主要介紹了create-react-app建置專案慢的解決方法,現在分享給大家,也給大家做個參考。
create-react-app慢的解決方法
在操作官方實例Create React App時,需要執行指令:
create-react-app my-app
來建立一個新的React應用程式。由於某原因,在拉取各種資源時,往往會巨慢,一直卡在
fetchMetadata: sill mapToRegistry uri http://registry.npmjs.org/whatwg-fetch
解決方案是換源,雖然平常使用cnpm來取代npm,但也只是使用新的指令而已,而在尋求create-react-app的相關配置希望修改registry時失敗了,最後發現create-react-app指令預設呼叫npm,於是直接把npm的register給永久設定過來就好了,這樣使用cnpm或npm就沒差別了。
npm config set registry https://registry.npm.taobao.org -- 配置后可通过下面方式来验证是否成功 npm config get registry -- 或npm info express
設定成功後,再執行create-react-app my-app,就會有驚喜。
上面是我整理給大家的,希望今後對大家有幫助。
相關文章:
##
以上是create-react-app建置專案慢的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!