We can create our first react project using the npx command line utility.
For creating a new project in react navigate to a folder and execute the below commands.
npx create-react-app my-web-app
cd my-web-app
npm start
Source
React Tutorial : Create your first react project