react_cheat_sheet
Table of Contents
React Cheat Sheet
Create
npx create-react-app my-app
Run (development environment)
cd my-app
npm start
Default development server will run at http://localhost:3000
Build / Publish
After you design and test the application, build with this:
npm run build
To deploy, upload the contents of the build directory to your web server.
Related
react_cheat_sheet.txt · Last modified: 2024/08/11 18:11 by jimc