Skip to content

Follow Redirect package using low level package net and tls.

License

Notifications You must be signed in to change notification settings

phamleduy04/follow-redirects-fast

Repository files navigation

Follow Redirect Fast

Follow redirect using barebone packages (tls and net) from NodeJS.

Supports Promise return

npm version Node.js CI

Example:

const followRedirects = require('follow-redirects-fast');

(async () => {
    const url = await followRedirects({ url: 'http://bit.ly/3K8720O', maxRedirects: 10, timeout: 5000 });
    console.log(url);
})();
  • Options List:
    • url (required): URL you want to follow redirect
    • maxRedirects (default: 5): Max Redirects you want to follow
    • timeout (default: 5000): Time in ms you want to wait until error

About

Follow Redirect package using low level package net and tls.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •