create-react-app.dev install globaly code example
Example 1: install react yarn
yarn create react-app my-appCopied
Example 2: react app using npm
npx create-react-app app-name
cd app-name
npm start
yarn create react-app my-appCopied
npx create-react-app app-name
cd app-name
npm start