xxxxxxxxxx
npx create-react-app my-app
cd my-app
npm start
//Note:npx on the first line is not a typo —
//it’s a package runner tool that comes with npm 5.2+.
xxxxxxxxxx
## Open your Terminal and put these commands, then hit Enter
npx create-react-app my-react-app
cd my-react-app
npm start
## Then open http://localhost:3000/ to see your app.
xxxxxxxxxx
npx create-react-app@latest your-project-name --use-npm //V.5.0.0 way to create a react app
cd your-project-name
npm start //To Run the App
//Updated !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
npx create-react-app my-app
cd my-app
npm start
//Happy Coding! (:
Creating react app using cmd
xxxxxxxxxx
npx create-react-app my-app
cd my-app
npm start
xxxxxxxxxx
npx create-react-app app-name // To create new React app
npm start // To start/run react app
// If react app/project is downloaded from some other source make sure to
// run below command first to install dependencies.
npm install