Deploying your React app has never been simpler with Github Pages

Tenexcoder
3 min readNov 12, 2020

Remember the time you were trying to share progress with a client or wanted to showcase your next side projects? We all been there hoping things could be only a few clicks away.

Well fear not, your wishes have been granted, there is now a free and simple approach to deploying your React apps.

gh-pages

I present to you gh-pages which I quote allows you to “Publish files to a gh-pages branch on GitHub (or any other branch anywhere else).”

The package automates the mundane step required to deploy your react app to GitHub Pages into three simple steps.

Technically this package can help you deploy any static site as long as the base directory of the static files is set accordingly — more on this in Step 2

Step 1: Add homepage to package.json

The step below is important!

If you skip it, your app will not deploy correctly.

Open your package.json and add a homepage field for your project:

“homepage”: “https://myusername.github.io/my-app",

or for a GitHub user page:

“homepage”: “https://myusername.github.io",

or for a custom domain page:

“homepage”: “https://mywebsite.com",

Create React App uses the homepage field to determine the root URL in the built HTML file.

Step 2: Install gh-pages and add deploy to scripts in package.json

Now, whenever you run npm run build, you will see a cheat sheet with instructions on how to deploy to GitHub Pages.

To publish it at https://myusername.github.io/my-app, run:

npm install — save gh-pages

Alternatively you may use yarn:

yarn add gh-pages

Add the following scripts in your package.json:

“scripts”: {+ “predeploy”: “npm run build”,+ “deploy”: “gh-pages -d build”,“start”: “react-scripts start”,“build”: “react-scripts build”,

The predeploy script will run automatically before deploy is run.

The deploy script will automagically deploy your app.

Note: The -d option is to set the base directory of the static files. Set it according to your project’s configuration. For example, the default the base directory for create-react-app is build , meanwhile, for a webpack configuration it is dist .

If you are deploying to a GitHub user page instead of a project page you’ll need to make one additional modification:

Tweak your package.json scripts to push deployments to master:

“scripts”: {“predeploy”: “npm run build”,- “deploy”: “gh-pages -d build”,+ “deploy”: “gh-pages -b master -d build”,

Step 3: Deploy the site by running npm run deploy

Then run:

npm run deploy

For a project page, ensure your project’s settings use gh-pages

Finally, make sure GitHub Pages option in your GitHub project settings is set to use the gh-pages branch:

Optionally, configure the domain

You can configure a custom domain with GitHub Pages by adding a CNAME file to the public/ folder.

Your CNAME file should look like this:

Copy

mywebsite.com

Resources

For more details check out the repository or create react app docs which this guide was based on.

https://github.com/tschaub/gh-pages

https://create-react-app.dev/docs/deployment/#github-pages

--

--

Tenexcoder

Hacker — Startups, Machine Learning, and Web Development