// A concise guide to deploy a Node.js and React app using PM2, covering frontend build, file transfer, and reliable serving.
Compile your React application into production-ready static files with the following command:
npm run build
This generates optimized assets in the build
directory (or a custom output folder if configured otherwise in your package.json
).
Move the contents of the build
folder to your Node.js server’s designated directory. You can use secure file transfer methods like scp
or rsync
. For example:
scp -r build/* user@server:/path/to/app/static
Additionally, ensure your Node.js backend files (e.g., server.js
, package.json
) are also transferred to the server’s root application directory.
Run your Node.js application and serve the React frontend using PM2, a powerful process manager. Use the following steps:
npm install -g pm2
Navigate to your app’s root directory and launch the backend with PM2:
pm2 start server.js --name "node-react-app"
Replace server.js
with your main Node.js entry file and "node-react-app"
with a custom app name.
If your Node.js app doesn’t serve the React build files directly (e.g., via Express), use PM2 to serve them separately:
pm2 serve /path/to/app/static --name "react-frontend" --port 3000
/path/to/app/static
to the folder containing your React build files.--port
to your desired port (e.g., 3000
).express.static
) if you want a single process.http://<server-ip>:<port>
in a browser.pm2 logs
or manage processes with pm2 list
for troubleshooting.This approach leverages PM2’s capabilities to keep your Node.js and React application running smoothly in production.