Host on github pages + creation

Vite vs Facebook installer

Facebook develops React, but Vite bundles everything into smaller packages and is faster.

Using Facebook installer

  1. npx create-react-app "your-project-name"
  2. cd "your-project-name"
  3. make it a github repo
  4. npm install gh-pages --save-dev
  5. add the following to the package.json scripts dict:
"predeploy" : "npm run build",
"deploy" : "gh-pages -d build",
  1. on github.com select gh-pages branch.
  2. run npm run deploy to add the newest version to github pages

Custom Domain

When using a custom domain, you need a CNAME file. Place this in the public/ folder to make sure itā€™ll get copied over to the root of the deploy.

Using Vite

  1. npm create vite@latest
  2. app-name
  3. React
  4. Typescript
  5. follow these instructions

Custom Domain

When using a custom domain, you need a CNAME file. Place this in the public/ folder to make sure itā€™ll get copied over to the root of the deploy.