December 2019
Intermediate to advanced
474 pages
10h 3m
English
Create React App can be installed by using the command line, where we should install it globally so that the package is available everywhere on our local computer and not just in a specific project:
npm install -g create-react-app
Now that the create-react-app package has been installed, we're ready to create our first Create React App project. There are multiple ways to set up a new project, but since we're already familiar with npm, there are only two methods we need to learn about. Let's get started:
npm init react-app github-portfolio
You can replace github-portfolio with any other name you want to use for this project. ...
Read now
Unlock full access