Difference between revisions of "React Setup"
Jump to navigation
Jump to search
(Created page with "* Install Node") |
|||
Line 1: | Line 1: | ||
* Install Node | * Install Node | ||
* React dev tools for Chrome (optional) | |||
npx create-react-app my-app # this does not install it globally | |||
cd my-app | |||
npm start | |||
Check if npm is installed | |||
npm --version |
Revision as of 23:23, 19 January 2021
- Install Node
- React dev tools for Chrome (optional)
npx create-react-app my-app # this does not install it globally cd my-app npm start
Check if npm is installed
npm --version