Follow redirect using barebone packages (tls and net) from NodeJS.
Supports Promise return
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