Answers for "how to let npx create-react-app use yarn not npm"

3

create react app with npm not yarn

npx create-react-app my-app --use-npm
Posted by: Guest on July-16-2020
1

How to create react app with yarn, npx or npm

npx create-react-app app-name //With npx, the CLI uses npm to install dependencies
npm init react-app app-name // With npm, the CLI also uses npm to install dependencies

yarn create react-app app-name // With yarn, the CLI uses yarn to install dependencies
Posted by: Guest on February-19-2022

Code answers related to "how to let npx create-react-app use yarn not npm"

Code answers related to "Javascript"

Browse Popular Code Answers by Language