Skip to content

With this Node JS package you can follow all redirects from a given url

Notifications You must be signed in to change notification settings

mrdaano/follow-url-redirects

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Follow url redirects

NPM version Actions Status

With this Node JS package you can follow all redirects from a given url.

Example

In this example, a bit.ly link has been created that will eventually lead to google.com.

const followUrlRedirects = require('follow-url-redirects');

followUrlRedirects('https://bit.ly/3cScyDF').then(result => console.log(result));

This example returns the following result:

[
    {
        "url": "https://bit.ly/3cScyDF",
        "code": 301,
        "cookies": {},
        "queryParams": {}
    },
    {
        "url": "http://google.com/",
        "code": 301,
        "cookies": {},
        "queryParams": {}
    },
    {
        "url": "http://www.google.com/",
        "code": 200,
        "cookies": {},
        "queryParams": {}
    }
]

Extra options

There is also the possibility to add extra options as a 2nd parameter.

Option Default Description
timeout 10000(ms) When a request takes too long it stops. In this case after 10 seconds
maxRedirects 10 The maximum number of redirects.

Example with options

const followUrlRedirects = require('follow-url-redirects');

const options = {
    timeout: 3 * 1000, // 3 seconds
    maxRedirects: 5
};

followUrlRedirects('https://bit.ly/3cScyDF', options).then(result => console.log(result));

About

With this Node JS package you can follow all redirects from a given url

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •