- Notifications
You must be signed in to change notification settings - Fork0
Heroku Buildpack for create-react-app: static hosting for React.js web apps
License
jtomchak/create-react-app-buildpack
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Deploy React.js web apps generated withcreate-react-app. Automates deployment with the built-in bundler and serves it up viaNginx. See theintroductory blog post and entry inHeroku elements.
- 🚦Purpose
⚠️ Requirements- 🚀Quick Start
- 🛠Usage
- 👓Customization
- 🕵️ Troubleshooting
- 📍Version compatibility
- 🏙Architecture
This buildpack deploys a React UI as a static web site. TheNginx web server provides optimum performance and security for the runtime.
If your goal is to combine React UI + API (Node, Ruby, Python…) into asingle app, then this buildpack is not the answer. The simplest combined solution is to usecreate-react-app + Node.js server. See also:create-react-app + Rails 5 server.
- Heroku
- git
- Node.js
- create-react-app
npm install -g create-react-app
Ensurerequirements are met, then execute the following in a terminal.
✏️Replace$APP_NAME with a name for your unique app.
create-react-app$APP_NAMEcd$APP_NAMEgit initheroku create$APP_NAME --buildpack https://github.com/mars/create-react-app-buildpack.gitgit add.git commit -m"Start with create-react-app"git push heroku masterheroku open
For explanation about these steps, continue reading the next section.
create-react-app my-appcd my-appgit init
At this point, this new repo is local, only on your computer. Eventually, you may want topush to Github.
heroku create$APP_NAME --buildpack https://github.com/mars/create-react-app-buildpack.git✏️Replace$APP_NAME with a name for your unique app.
This command:
- sets theapp name & its URL
https://my-app-name.herokuapp.com - sets thebuildpack to deploy a
create-react-appapp - configures the
herokuremote in the local git repo, sogit push heroku masterwill push to this new Heroku app.
git add.git commit -m"Start with create-react-app"git push heroku master
heroku open
Find the app onyour dashboard.
Work with your app locally usingnpm start. See:create-react-app docs
Then, commit & deploy ♻️
Eventually, to share, collaborate, or simply back-up your code,create an empty repo at Github, and then follow the instructions shown on the repo topush an existing repository from the command line.
The web server may beconfigured via the static buildpack.
The defaultstatic.json, if it does not exist in the repo, is:
{"root":"build/" }By default,React Router (not included) uses hash-based URLs likehttps://example.com/index.html#/users/me/edit. This is nice & easy when getting started with local development, but for a public app you probably want real URLs likehttps://example.com/users/me/edit.
Create astatic.json file to configure the web server for cleanbrowserHistory URLs with React Router:
{"root":"build/","clean_urls":false,"routes": {"/**":"index.html" }}Enforce secure connections by automatically redirecting insecure requests tohttps://, instatic.json:
{"https_only":true}Prevent downgrade attacks withHTTP strict transport security. Add HSTS"headers" tostatic.json:
{"headers": {"/**": {"Strict-Transport-Security":"max-age=7776000" } }}max-ageis the number of seconds to enforce HTTPS since the last connection; the example is 90-days
Proxy XHR requests from the React UI in the browser to API backends. Prevent same-origin errors whenCORS is not available on the backend.
Configure usingProxy Backends from the static site buildpack. Add"proxies" tostatic.json:
{"proxies": {"/api/": {"origin":"${API_URL}" } }}Then, point the React UI app to a specific backend API:
heroku config:set API_URL="https://api.example.com"REACT_APP_* environment variables are supported with this buildpack.
🤐Be careful not to export secrets. These values may be accessed by anyone who can see the React app.
heroku config:set REACT_APP_HELLO='I love sushi!'Requires at least create-react-app 0.7. Earlier versions only support Compile-time.
Create a.env file that sets a variable per line:
REACT_APP_API_URL=http://api.example.comREACT_APP_CLIENT_ID=XyzxYzxyZ
Two versions of variables are supported. In addition to compile-time variables applied duringbuild the app supports variables set at runtime, applied as each web dyno starts-up.
| Requirement | Compile-time | Runtime |
|---|---|---|
| never changes for a build | ✓ | |
| support forcontinuous delivery | ✓ | |
| updates immediately when setting newconfig vars | ✓ | |
| different values for staging & production (in apipeline) | ✓ | |
ex:REACT_APP_BUILD_VERSION (static fact about the bundle) | ✓ | |
ex:REACT_APP_DEBUG_ASSERTIONS (prune code from bundle) | ✓ | |
ex:REACT_APP_API_URL (transient, external reference) | ✓ | |
ex:REACT_APP_FILEPICKER_API_KEY (Add-on config vars) | ✓ |
♻️ The app must be re-deployed for compiled changes to take effect.
heroku config:set REACT_APP_HELLO='I love sushi!'git commit --allow-empty -m"Set REACT_APP_HELLO config var"git push heroku master
Requires at least create-react-app 0.7.
Install theruntime env npm package:
npm install @mars/heroku-js-runtime-env --save
Then, require/import it to use the vars within components:
importReact,{Component}from'react';importruntimeEnvfrom'@mars/heroku-js-runtime-env';classAppextendsComponent{render(){// Load the env object.constenv=runtimeEnv();// …then use values just like `process.env`return(<code>Runtime env var example:{env.REACT_APP_HELLO}</code>);}}
\n, into Runtime config vars. Use literal UTF-8 values only; they will be automatically escaped.
🤐Be careful not to export secrets. These values may be accessed by anyone who can see the React app.
Use a custom.profile.d script to make variables visible to the React app by prefixing them withREACT_APP_.
create
.profile.d/000-react-app-exports.shmake it executable
chmod +x .profile.d/000-react-app-exports.shadd an
exportline for each variable:export REACT_APP_ADDON_CONFIG=${ADDON_CONFIG:-}
set-up & useRuntime configuration to access the variables
For example, to use the API key for theFilestack JS image uploader:
export REACT_APP_FILEPICKER_API_KEY=${FILEPICKER_API_KEY:-}
- Check this README to see if it already mentions the issue.
- Search ourissues to see if someone else has experienced the same problem.
- Search the internet for mentions of the error message and its subject module, e.g.
ENOENT "node-sass" - File a newissue. Please include:
- build log output
- link to GitHub repo with the source code (if private, grant read access to @mars)
This buildpack will never intentionally cause previously deployed apps to become undeployable. Using masteras directed in the main instructions will always deploy an app with the most recent version of this buildpack.
Releases are tagged, so you can lock an app to a specific version, if that kind of determinism pleases you:
heroku buildpacks:set https://github.com/mars/create-react-app-buildpack.git#v1.2.1
✏️Replacev1.2.1 with the desiredrelease tag.
♻️ Then, commit & deploy to rebuild on the new buildpack version.
This buildpack composes several buildpacks (specified in.buildpacks) to supportno-configuration deployment on Heroku:
heroku/nodejsbuildpack- complete Node.js enviroment to support the webpack build
node_modulescached between deployments
mars/create-react-app-inner-buildpack- enablesruntime environment variables
- generates thedefault
static.json - performs the production build for create-react-app,
npm run build
heroku/staticbuildpack- Nginx web server
- handy static website & SPA (single-page app)customization options
Some kind feedback pointed out that this buildpack is not necessarily specific tocreate-react-app.
This buildpack can deploy any SPA [single-page app] as long as it meets the following requirements:
npm run buildperforms the transpile/bundling- the file
build/index.htmlorthe root specified instatic.jsonexists at runtime.
About
Heroku Buildpack for create-react-app: static hosting for React.js web apps
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Languages
- Shell100.0%