Open In App

How to Add Express to React App using Gulp ?

Last Updated : 10 Nov, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

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:

Screenshot-from-2023-11-08-11-06-42

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!” }.

demo.gif

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.



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads