22
loading...
This website collects cookies to deliver better user experience
create-react-app
(or CRA), a starter which bootstraps a project with a minimal structure.npx create-react-app new-app
. Just like that, it will create a new directory called new-app
(or whatever value you pass in) with a rudimentary structure as well as a configuration built to work on a React project without any assumptions about which tools will be used.react
and react-dom
. You can install both in your application by running the command:npm i react react-dom