37
loading...
This website collects cookies to deliver better user experience
2017 StackOverflow developer survey
. This article will walk you through setting up your first React app and assumes you are familiar with text editors and command line navigation. We will be using the Node package manager (npm), so you will need to have Node installed.npm
to install the create-react-app
command line interface (CLI) globally (-g)
.npm install -g create-react-app
:create-react-app <name-of-app>