EN
React start app from command line
8
points
In this article we would like to show you how to start react app from command line.
Quick solution - if we have npm installed:
npm start
If we have yarn package manager:
yarn start
Create new react app from scratch
# create new react app
npx create-react-app my-new-app
# change directory to our new app
cd my-new-app
# start app with npm
npm start