Heim >Web-Frontend >js-Tutorial >Methoden zur Behebung des Paketverwaltungstools NPM und des Garn-Download- und Installations-Timeouts
npm install -g cnpm --registry=https://registry.npm.taobao.org
npm config set registry https://registry.npm.taobao.org
这样npm命令就可以使用cnpm命令来代替,比如在使用react脚手架命令create-react-app
时会报的超时错误,这样设置就可以解决了。【视频教程推荐:nodejs视频教程 】
yarn config set registry https://registry.npm.taobao.org
在使用react脚手架命令create-react-app
时会报的超时错误:
There appears to be trouble with your network connection. Retrying…
设置完成后可以解决。
更多编程相关知识,可访问:编程入门!!
Das obige ist der detaillierte Inhalt vonMethoden zur Behebung des Paketverwaltungstools NPM und des Garn-Download- und Installations-Timeouts. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!