How To Host Your React App For Free on GitHub What You Need: GH Account Install & Setup Git on your Machine Install NodeJS Install NPM Steps Create a react app npx create-react-app react-app Initialize npm npm init react-app react-app Install GitHub Pages Package as a dev dependency npm install gh-pages --save-dev In your package.json Add a homepage property and give it a value like this { "homepage": "http://yourusername.github.io/yourrepositoryname" } Within the scripts portion of your package.json add predeploy and deploy property { "predeploy":"npm run build", "deploy":"gh-pages -d build" } Deploy your react app to github pages npm run build Follow Git Steps to push to github by setting main as the main branch git add . git commit -m "init commit" git branch -M main git push -u origin main