node-unshortener 0.1.0
A simple library that can unshorten any short url.
Install
npm install unshortener
or
git clone https://github.com/Swizec/node-unshortener.git
cd node-unshortener
npm link
Usage
// expand an URLvar unshortener = ;// you can pass in a url object or stringunshortener;
If you have a handy bitly account you should also pass in an options object to enable the unshortener to use the bitly API directly:
// expand an URLvar unshortener = ;// you can pass in a url object or stringunshortener;
When an error occurs the callback is passed the original url and an error flag.
How it works
node-unshortener aims to be able to unshorten any link possible, so it tries to behave as a browser and simply follows all the redirects. However, to be nice, when at all possible, it tries to use the url shortener's official API.
That said, please feel free to suggest any unshortening services I may have missed.
Services/domains directly supported so far:
- bit.ly
- j.mp
- is.gd
- goo.gl
- ericri.es
- jc.is
- nyti.ms
- linkd.in
- win.gs
- budurl.com
- snipurl.com
- snurl.com
- cl.lk
- snipr.com
- sn.im
- dai.ly
- imgry.net
- mln.im
- theatln.tc
- rww.to
License
Copyright (C) Swizec Teller swizec@swizec.com
Licensed under the GPL version 3 or later for non-commercial use.