Whilst setting up a test app myself, I couldn't find a simple way to deploy Create React App with Express on the same server. It took some tweaking, so here are the steps if you want to do the same.
Please note: These steps assume you want to run your app server and your API's from the same place. This is useful if you want to deploy simply to something like heroku.
Read this if you've not worked with create-react-app
before: If you've not yet worked with create-react-app it has two modes of serving: from a hot-reloader which is launched with npm run start
and an optimised production bundle which is a standard index.html that you can serve in any way you desire. I wanted a way to have the npm run start
method and the npm run build
method to work in the same way with my API, one way to do this is with the proxy setup I'm about to take you through.
Step 1: Install create-react-app
create-react-app your-app-name
Step 2: Install packages for create react app
npm install;
Step 3: Install express
npm install express --save
Step 4: Create a server.js
file
const express = require('express');
const bodyParser = require('body-parser')
const path = require('path');
const app = express();
app.use(express.static(path.join(__dirname, 'build')));
app.get('/ping', function (req, res) {
return res.send('pong');
});
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
app.listen(process.env.PORT || 8080);
Step 5: Update your package.json
Add the following to your package.json
"proxy": "http://localhost:8080"
If you didn't do this we would have to create slow production builds every time (rather than the faster for development npm run start
method). This is because npm start
uses port 3000, which is not the same port that the express APIs are running on (8080).
Step 6: Start the express server
node server.js
Or nodemon
if you prefer.
Step 7: Start your react app
Keep node running, do this in a separate tab/ window.
npm start
Start the react build with hot reloading.
Conclusion
Now you can develop all you want on localhost:3000
by using npm run start
and your API's will work as expected (despite requests coming from port 3000).
When you want to deploy, just run the production build npm run build
and serve your app from localhost:8080
, which is node server.js
in this example (note the port number at the bottom of server.js).
Profit.
Lou is the editor of The Cloud Native Software Engineering Newsletter a Newsletter dedicated to making Cloud Software Engineering more accessible and easy to understand, every 2 weeks youβll get a digest of the best content for Cloud Native Software Engineers right in your inbox.
Top comments (35)
Hey,
When I try to serve my production build app from localhost (here 8014) I just get a blank page. In the console i get the error message: GET localhost:8014/static/js/2.2612b9d... net::ERR_ABORTED 404 (Not Found)
Any idea?
leaving this here for anyone that might be encountering the same issue! Here's how I fixed it, I just needed to add a route that matches any (*) that don't match exactly '/', and serve the react app:
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
// Handles any requests that don't match the ones above
app.get('*', (req,res) =>{
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
Cheers!
(*) did the trick for me too :)
the express server doesn't know how to host the static files generated by created webpack.
put
app.use(express.static('build'))
to tell express where to look for them.@Lou maybe this should be included in the article.
Thanks @bordenjardine . The post does currently refer to the build folder:
app.use(express.static(path.join(__dirname, 'build')));
But depending on how you're referencing the build folder it may depend on where you're the server start commands from. Try as @jaspersurmont to ensure that you're correctly pointing to the build folder, and that it has at the least an index.html inside.
did you find a solution for this? i having the same problem.
I did fix it, however I'm not so sure what exactly I did.
I think that one of the issues was that I didn't refer to the build folder correctly. Try messing around with that a bit
What exactly does this mean?
"When you want to deploy, just run the production build and serve your app from localhost:8080 and everything will work as planned." ?
The Production build runs on PORT 5000 should we change that to run on port 8080?
Hey, ayanez17.
There are two modes your app can run in. When built (port 8080) via
npm run build
(which creates an index.html) or when running live reloadnpm run start
which runs on port 3000.When running
npm run start
your app will proxy from port 3000 to port 8080 automatically. However when you create a production build your entire app should be running from port 8080, as express and the API's are running from the same server (in this setup).You shouldn't need to change any ports. Does that help?
Hi, can you also help out to setup HTTPS with regards to this arcticle? I have tried to use export HTTPS=true as i am working on MAC. It works fine when i do npm start (i.e. development mode) but not when i started hosting the production build as per the steps you mentioned above.
Hi,
Did you get a solution to this?
I tried creating a self-signed certificate by following these steps -
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
And to my server.js file, I included the following code -
var express = require("express");
var https = require("https");
var fs = require("fs");
const path = require('path');
var app = express();
const options = {
key: fs.readFileSync('key.pem'),
cert: fs.readFileSync('cert.pem')
};
var server = https.createServer(options, app);
app.use(express.static(__dirname));
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'build'));
});
server.listen(8000);
But this doesn't seem to work for me. When I open
https://localhost:3000
it throws a "The site can't provide a secure connection". Can someone point out where I am going wrong?Quick question! If you don't want to develop and test the React app and the API at the same time, is the proxy step necessary?
Also, how would API requests look like on the React app? With or without proxy.
Hey Sammy!
All of the requests are for absolute paths. So for the ping example would just be:
Then node works out to send it to the right place. This maps the create react app on port 3000 to the api requests on 8080.
If you want them on a separate server you'll need to call with the port number, or domain that you setup your api server on.
Like so:
With that option, however you'll neeed to fiddle with your API access control. So that you only allow access to your app, not the whole internet. However, this can be more tricky and fiddly and depends a lot on how you setup your architecture.
hey Lou, thanks for the article.
I'm trying this to see if I can get some environment variables to my static app, but I can't seem to get it to work. I'm assuming I have to pass them in to the client some how.
Do you have any ideas?
thx
I'm a little confused, environment variables are typically for configuring your back end rather than exposing anywhere else. Could you elaborate on what you're trying to achieve?
I don't remember exactly what I was trying to achieve, but an example I can think of is hitting endpoints in different dev environments. For example:
GET => dev.mydomain.com/myendpoint
GET => qa.mydomain.com/myendpoint
GET => mydomain.com/myendpoint
I would want to consume the same environment variables that my Microservices use, instead of creating a hardcoded copy in my JS code.
Hope it makes sense.
Hi @Lou, when i deploy to server, it had an error: Error: ENOENT: no such file or directory, stat '/home/namld/projects/raca/build/index.html'. How to fix it?
make sure you run
npm run build
before, otherwise you will not have a build directoryPatrick's suggestion sounds correct, let me know if you had any other issues.
Thanks for the tutorial! I just followed it successfully to setup a new project that uses CRA and Express.
Just to be clear for anyone who is confused, what's not been stated explicitly is that you should just load localhost:3000 when you're developing because that's your single page app front end. As long as you configure the proxy in package.json and created the server.js according to this article, you should never need to think about the fact that localhost:8080 is the API server when developing.
Hope this helps!
Hey Nick! Glad to hear it worked out for you. I imagine the article is a little bit out of date now since it was written some years ago. I think what you mention is what I tried to address in the conclusion: dev.to/loujaybee/using-create-reac.... But hopefully your re-wording will help someone else who stumbles upon the article!
Hey Lou, really love this simple version to add a backend to create react app. It's really cool.
I'm having some trouble deploying this to heroku. Is there a particular package.json change I need to make to get this to work? Everything works in development, but when deployed I get an 'invalid host error' rendering on the page with nothing else
My package.json looks like this. I also ran 'npm run build' before deploying.
Given the popularity of the post, I should probably completely overhaul it. A few things have changed in create-react-app since.
Sounds like this though...
facebook.github.io/create-react-ap...
It's probably an issue with your proxy settings. CRA has changed a few bits with regards to proxies since, it's worth taking a look at their docs.
Hey,
Great article! I would like to know how to set up HTTPS here.
I tried creating a self-signed certificate following the steps below,
openssl genrsa -out key.pem
openssl req -new -key key.pem -out csr.pem
openssl x509 -req -days 9999 -in csr.pem -signkey key.pem -out cert.pem
rm csr.pem
I'm adding the following code in my server.js
var express = require("express");
var https = require("https");
var fs = require("fs");
const path = require('path');
var app = express();β
const options = {
key: fs.readFileSync('key.pem'),
cert: fs.readFileSync('cert.pem')
};
var server = https.createServer(options, app);β
app.use(express.static(__dirname));
app.get('/', function (req, res) {
res.sendFile(path.join(__dirname, 'build'));
});
server.listen(8000);
But this doesn't seem to work as when I try to open
https://localhost:3000
, it throws a "The site can't provide a secure connection". Could you please point out where exactly I am going wrong?This has been driving me insane, stayed up until 4 in the morning after 7 hours of pulling my hair out and I am still struggling today.
localhost/8080/pong works perfectly fine. As soon as run build and deploy to my web server the response is:
404 Not Found
I presume this is do with "just run the production build npm run build and serve your app from localhost:8080"
The casual nature of this comment makes me believe this is an obvious thing to be able to do, yet I have no idea how to change the server from localhost:3000 to local host 8080 when I run build.
I'm not even sure if this is what the issue is either.