解决npx create-react-app速度过慢的问题

以管理员身份运行cmd

 

切换npm源:

npm config set registry https://registry.npm.taobao.org

 

切换yarn源:

yarn config set registry https://registry.npm.taobao.org

 

安装或更新create-react-app版本:

npm i -g create-react-app

 

查看create-react-app版本

create-react-app -V

 

使用create-react-app脚手架创建React应用程序:

npx create-react-app my-app

 

运行刚才创建的应用:

cd my-app

yarn start

 

posted @ 2021-03-03 22:41  starlog  阅读(6736)  评论(0编辑  收藏  举报