How to Add Express to React App using Gulp ?
Last Updated :
28 Apr, 2025
When building a web application with ReactJS, you may need to include a backend server for handling server-side logic and API requests. Express is a popular choice for creating backend servers in Node.js. In this tutorial, we'll explore how to integrate Express with a React app using Gulp as the build tool. Gulp will allow us to run both the React development server and the Express server concurrently.
Prerequisites:
Gulp
Gulp is a task runner and build system for JavaScript projects. It helps automate repetitive tasks such as file minification, compilation, testing, and more. It uses a simple and intuitive syntax, allowing developers to define tasks and dependencies easily. Gulp simplifies the development process by automating common workflows, making it a popular tool among web developers.
Steps to Configure Express to a React App using Gulp
Step 1: Initialize a new React project using Create React App by running the following command in your terminal:
npx create-react-app gfg
Step 2: Move to the project directory:
cd gfg
Step 3: Install Express and Gulp by running the following command in your terminal:
npm install express gulp
Project Structure:

The updated dependencies after installing required modules
"dependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"express": "^4.18.2",
"gulp": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"web-vitals": "^2.1.4"
}
Example: This example implements backend using gulp and express.
JavaScript
// Filename - gulpfile.js
const gulp = require("gulp");
const { spawn } = require("child_process");
// Define the task to start the Express server
gulp.task("start-server", () => {
const serverProcess = spawn("node", ["server.js"], {
stdio: "inherit",
});
serverProcess.on("close", (code) => {
if (code === 8) {
console.error(
"Error detected, waiting for changes..."
);
}
});
});
// Define the default task to start the React development server
gulp.task(
"default",
gulp.series("start-server", () => {
const reactProcess = spawn("npm", ["start"], {
stdio: "inherit",
});
reactProcess.on("close", (code) => {
if (code === 8) {
console.error(
"Error detected, waiting for changes..."
);
}
});
})
);
JavaScript
// Filename server.js
const express = require("express");
const app = express();
// Choose a port number
const port = 3001;
// Define your routes here
app.get("/api/data", (req, res) => {
// Handle the API request and send a response
res.json({ message: "Hello from the server!" });
});
// Start the server
app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});
Step to run server using gulp:
Step 1: Update the scripts: First update the "scripts" section to include a new script for running Gulp:
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"gulp": "gulp"
},
Step 2 Start the backend server: Use this command in the terminal inside project directory to start the server
npm run gulp
Start frontend server: Use this command in the terminal inside project directory to start the server
npm start
Output: The React app will be available at http://localhost:3000, and you can access the Express API endpoint at http://localhost:3001/api/data. When you visit the API endpoint in your browser, you should see the JSON response { "message": "Hello from the server!" }.
DemoBy following these steps, you've successfully added Express to your React app using Gulp. The React development server will run on the default port 3000, and the Express server will run on port 3001. You can modify these ports as needed in the server.js and gulpfile.js files.
Similar Reads
How to Create a Simple Server Using ExpressJS? The server plays an important role in the development of the web application. It helps in managing API requests and communication between the client and the backend. ExpressJS is the fast and famous framework of the Node.Js which is used for creating the server.In this article, we will create a simp
3 min read
How to Integrate Stripe Payments in React App using Express ? Many of the projects you develop might have a requirement to integrate the payment module in your application. Stripe serves as a payment processing platform designed to help applications securely accept and handle online payments. In this article, we will see how we can easily integrate payment sys
6 min read
How to Deploy React App on Netlify Using Github? A React App is a web or mobile application that is built using the React library of JavaScript. It helps users create interactive, single-page, and dynamic applications. These applications are built using HTML, CSS, and JavaScript. Deployment of a React app can be done via GitHub, Netlify, or any ot
6 min read
How To Dockerize a ReactJS App? Dockerizing a React app ensures that your application runs consistently across various environments by containerizing it. By creating a Docker container, you can package your React app, along with its dependencies, to ensure that it runs the same way regardless of the environment. In this article, w
4 min read
How to Deploy ExpressJS on Netlify ? This guide explores the process of deploying an Express.js application on Netlify, a popular platform known for hosting web projects with ease. From understanding the basics of Express.js to configuring serverless functions on Netlify, this comprehensive guide offers step-by-step instructions in sim
5 min read
How to Migrate from create-react-app to Vite? In this article, we will learn how we can migrate from create-react-app to Vite. Vite is a build tool for frontend development that aims for fast and efficient development. It provides a development server with hot module replacement and supports various JavaScript flavors, including JSX, out of the
3 min read