Open In App

Express JS res.redirect() Function

The res.redirect() function redirects to the URL derived from the specified path, with specified status, an integer (positive) which corresponds to an HTTP status code. The default status is “302 Found”. 

Syntax:



res.redirect([status] path)

Parameter: This function accepts two parameters as mentioned above and described below:

Return Value: It returns an Object.



Type of paths we can enter:

Steps to Install the express module:

Step 1: You can install this package by using this command.

npm install express

Step 2: After installing the express module, you can check your express version in the command prompt using the command.

npm version express

Step 3: After that, you can just create a folder and add a file, for example, index.js.

Project Structure:

Project Structure

Example 1: Below is the code example of the res.redirect().




const express = require('express');
const app = express();
const PORT = 3000;
 
// Without middleware
app.get('/', function (req, res) {
    res.redirect('/user');
});
 
app.get('/user', function (req, res) {
    res.send("Redirected to User Page");
});
 
app.listen(PORT, function (err) {
    if (err) console.log(err);
    console.log("Server listening on PORT", PORT);
});

Steps to run the program:

Run the index.js file using the below command:

node index.js

Output: Now open the browser and go to http://localhost:3000/, now check your console and you will see the following output:

Server listening on PORT 3000

Browser Output: go to http://localhost:3000/user

Output

Example 2: Below is the code example of the res.redirect().




const express = require('express');
const app = express();
const PORT = 3000;
 
// With middleware
app.use('/verify', function (req, res, next) {
    console.log("Authenticate and Redirect")
    res.redirect('/user');
    next();
});
 
app.get('/user', function (req, res) {
    res.send("User Page");
});
 
app.listen(PORT, function (err) {
    if (err) console.log(err);
    console.log("Server listening on PORT", PORT);
});

Steps to run the program: 

Run the index.js file using the below command:

node index.js

Output: Now open the browser and go to http://localhost:3000/verify, now check your console and you will see the following output:

Server listening on PORT 3000
Authenticate and Redirect

Browser Output:

Output


Article Tags :