What does this “react-scripts eject” command do?

create-react-app encapsulates all of the npm modules it is using internally, so that your package.json will be very clean and simple without you having to worry about it. However, if you want to start doing more complex things and installing modules that may interact with modules create-react-app is using under the hood, those new modules … Read more

What exactly is the ‘react-scripts start’ command?

create-react-app and react-scripts react-scripts is a set of scripts from the create-react-app starter pack. create-react-app helps you kick off projects without configuring, so you do not have to setup your project by yourself. react-scripts start sets up the development environment and starts a server, as well as hot module reloading. You can read here to see what everything it does for … Read more