标签: reactjs react-native
每次我写create-react-app项目名。 我正面临找不到命令之类的问题。
npx create-react-app 找不到命令:create-react-app
npx create-react-app
答案 0 :(得分:0)
您需要指定要创建的应用的名称:
npx create-react-app app-name
另外,请确保您拥有node installed
答案 1 :(得分:-1)
create-react-app应该全局安装
create-react-app
运行此
npm i create-react-app -g
然后创建您的应用
create-react-app app-name