Example ReactJS - TomaszLukawskiSam/TAU GitHub Wiki
Create project
(https://github.com/facebook/create-react-app)
npx create-react-app hello-world
Run app
cd hello-world
npm start
Verify app
http://localhost:3000/
Build the app
npm run build
(https://github.com/facebook/create-react-app)
npx create-react-app hello-world
cd hello-world
npm start
http://localhost:3000/
npm run build