React Cheat Sheet
Create
npx create-react-app my-appRun (development environment)
cd my-app
npm startDefault development server will run at http://localhost:3000
Build / Publish
After you design and test the application, build with this:
npm run buildTo deploy, upload the contents of the build directory to your web server.