create-react-app 不支持npm,仅支持yarn

u91tlkcl  于 2个月前  发布在  React
关注(0)|答案(1)|浏览(35)

创建新应用无法在:
npx create-react-app app-name

npm init react-app app-name
上工作,只能在:
yarn create react-app app-name
上创建。

zpjtge22

zpjtge221#

似乎在使用create-react-app包之前应该先安装它。请按照以下步骤操作:

npm install -g create-react-app    
npx create-react-app app-name

相关问题