0.1.12 • Published 11 years ago
resolver v0.1.12
Resolver
Url resolver module for Node.JS
This module Resolves destination URLs. Feed it a source url and the resolver returns with the destination url if any redirects happened.
For example
http://bit.ly/PWoeXswill be resolved into
http://www.andrisreinman.com/post/15668406504/eesti-saitide-kodeeringudAlso if the final url has google analytics params (utm_), these will be removed.
Installation
npm install resolverUsage
Use resolver.resolve(url, callback)
var resolver = require("resolver");
resolver.resolve("http://bit.ly/PWoeXs", function(err, url, filename, contentType){
console.log(err || url);
});License
MIT