April 2018
Intermediate to advanced
284 pages
6h 43m
English
To set up our development environment, the first step will be the React setup. There are different options available to install React. If you already have an existing app and want to add React, you can install it using a package manager such as npm using this command:
npm initnpm install --save react react-dom
However, if you are starting a new project, the easiest way to get started is with the React Starter Kit. Just go to the Command Prompt and execute the following command to install the React Starter kit:
npm install -g create-react-app
This command will install and set up the local development environment by downloading all the required dependencies. There are a number of benefits to have your development environment with ...
Read now
Unlock full access