Skip to content

Latest commit

 

History

History

Hosting

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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

  1. Create a react app
npx create-react-app react-app
  1. Initialize npm
npm init react-app react-app
  1. Install GitHub Pages Package as a dev dependency
npm install gh-pages --save-dev
  1. In your package.json Add a homepage property and give it a value like this
{
    "homepage": "http://yourusername.github.io/yourrepositoryname"
}
  1. Within the scripts portion of your package.json add predeploy and deploy property
{
    "predeploy":"npm run build",
    "deploy":"gh-pages -d build"
}
  1. Deploy your react app to github pages
npm run build
  1. 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