Open In App

How to create custom middleware in express ?

Last Updated : 31 Mar, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Express.js is the most powerful framework of the node.js. Express.js is a routing and Middleware framework for handling the different routing of the webpage, and it works between the request and response cycle. Express.js use different kinds of middleware functions in order to complete the different requests made by the client for e.g. client can make get, put, post, and delete requests these requests can easily handle by these middleware functions

Working of the middleware functions:

Custom Middlewares:

We can create multiple Custom middleware using express.js according to the routing of the request and also forward the request to the next middleware.

Syntax:

app.<Middlewaretype>(path,(req,res,next))

Parameters: Custom Middleware takes the following two parameters:

  • path: The path or path pattern or in regular expression by which particular Middleware will be called.
  • callback: The second parameter is the callback function that takes three parameters request, response, and next() function as an argument. 

Installing module: Install the express module using the following command.

npm install express

Project structure: Our project structure will look like this.

index.js




// Requiring module 
const express = require("express"); 
  
// Creating express app object 
const app = express(); 
  
app.post("/check",(req,res,next)=>{
  res.send("This is the post request")
  next()
})
  
app.get("/gfg",(req,res,next)=>{
  res.send("This is the get request")
  res.end()
})
  
// Server setup 
app.listen(3000, () => { 
  console.log("Server is Running"); 
})


Run index.js file using below command:

node index.js

Output:

Server is Running

Now open the postman tool and send the following requests:

  • Handling Post request: 

  • Handling get request:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads