Home > Back-end >  npx create-react-app is not installing with yarn
npx create-react-app is not installing with yarn

Time:12-29

I am using npx create-react-app <app-name> to create react app. I have installed yarn on my machine. Using this command react app is installing with npm. But previously it was installed with yarn.

npm version: 8.3.0
node version: 17.3.0
yarn version: 1.22.17
os: windows 10 pro
git version: 2.34.1.windows.1

Previously installing was like this:

enter image description here

Now installing like this:

enter image description here

I want yarn package manager instead of node package manager. How can I do that?

CodePudding user response:

try : yarn create react-app appname

CodePudding user response:

try yarn create react-app my-app. ... npm start or yarn start. Runs the app in development mode. ...

  • Related