How to Add Express to React App using Gulp ?
Last Updated :
24 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
const gulp = require( "gulp" );
const { spawn } = require( "child_process" );
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..."
);
}
});
});
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
const express = require( "express" );
const app = express();
const port = 3001;
app.get( "/api/data" , (req, res) => {
res.json({ message: "Hello from 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!” }.

Demo
By 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 use the app object in Express ?
In Node and Express, the app object has an important role as it is used to define routes and middleware, and handling HTTP requests and responses. In this article, we'll explore the various aspects of the `app` object and how it can be effectively used in Express applications. PrerequisitesNode.js a
3 min read
How to Deploy React App using Azure Static Web Apps ?
Microsoft Azure is a public cloud computing platform. It provides a lot of cloud services to access, manage, and deploy applications. Where as Azure Static Web App is one of the services of Microsoft Azure. It automatically builds and deploys full-stack web apps from the code repository to azure. In
3 min read
How To Make A GET Request using Postman and Express JS
Postman is an API(application programming interface) development tool that helps to build, test and modify APIs. In this tutorial, we will see how To Make A GET Request using Postman and Express JS PrerequisitesNode JSExpress JSPostmanTable of Content What is GET Request?Steps to make a GET Request
3 min read
How to create a simple server using Express JS?
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 sim
3 min read
How to deploy React app to Heroku?
React is a very popular and widely used library for building User Interfaces. So if you are thinking about deploying your React app to the cloud platform, there are various choices for doing that such as AWS EC2 or Heroku. But for testing your React app, Heroku will be the best option as it is free
3 min read
How to include css files using NodeJS, Express, and EJS?
CSS stands for âCascading Style Sheetâ. It is used to style web pages. CSS simplifies the process of making web pages presentable. It describes how web pages should look it prescribes colors, fonts, spacing, and much more. Including CSS files is important for styling web pages in web development wit
2 min read
How to Deploy React App on Netlify Using Github?
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 othe
6 min read
How to deploy React app to Surge ?
React stands out as a widely embraced library for crafting User Interfaces. When it comes to deploying your static React app effortlessly, the surge package comes in handy, enabling you to publish web apps to a CDN seamlessly with just one command. Prerequisites:Installation of Node.js on WindowsIns
3 min read
Create ToDo App using ReactJS
In this article, we will create a to-do app to understand the basics of ReactJS. We will be working with class based components in this application and use the React-Bootstrap module to style the components. This to-do list can add new tasks we can also delete the tasks by clicking on them. The logi
3 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