问题描述
每次我写create-react-app项目名。 我正面临找不到命令之类的问题。
npx create-react-app
找不到命令:create-react-app
解决方法
您需要指定要创建的应用的名称:
npx create-react-app app-name
另外,请确保您拥有node installed
, create-react-app
应该全局安装
运行此
npm i create-react-app -g
然后创建您的应用
create-react-app app-name