phamleduy04 / follow-redirects-fast

Follow Redirect package using low level package net and tls.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

License:MIT License


Languages

Language:JavaScript 100.0%