Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 876 Bytes

Readme.md

File metadata and controls

23 lines (17 loc) · 876 Bytes

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