A minimal example of using a Node backend (server for API, proxy, & routing) with a React frontend.
To deploy a frontend-only React app, use the static-site optimized
A combo of two npm projects, the backend server and the frontend UI. So there are two package.json configs.
- package.jsonfor Node server & Heroku deploy- heroku-postbuildscript compiles the webpack bundle during deploy
- cacheDirectoriesincludes- react-ui/node_modules/to optimize build time
 
- react-ui/package.jsonfor React web UI- generated by create-react-app
 
Demo deployment: example API call from the React UI is fetched with a relative URL that is served by an Express handler in the Node server.
git clone https://github.com/mars/heroku-cra-node.git
cd heroku-cra-node/
heroku create
git push heroku masterThis deployment will automatically:
- detect Node buildpack
- build the app with
- npm installfor the Node server
- heroku-postbuildfor create-react-app
 
- launch the web process with npm start- serves ../react-ui/build/as static files
- customize by adding API, proxy, or route handlers/redirectors
 
- serves 
👓 More about deploying to Heroku.
If an app was previously deployed with create-react-app-buildpack, then a few steps are required to migrate the app to this architecture:
- 
Remove create-react-app-buildpack from the app; heroku/nodejs buildpack will be automatically activated heroku buildpacks:clear 
- 
Move the root React app files (including dotfiles) into a react-ui/subdirectorymkdir react-ui git mv [!react-ui]* react-ui/ # You'll see "fatal: Not a git repository"; let's fix that error mv react-ui/.git ./ 
- 
Create a root package.json,server/, &.gitignoremodeled after the code in this repo
- 
Commit and deploy ♻️ git add -A git commit -m 'Migrate from create-react-app-buildpack to Node server' git push heroku master
In a terminal:
# Initial setup
npm install
# Start the server
npm startThe React app is configured to proxy backend requests to the local Node server. (See "proxy" config)
In a separate terminal from the API server, start the UI:
# Always change directory, first
cd react-ui/
# Initial setup
npm install
# Start the server
npm start