short-url
v0.0.1
Published
google url shortener
Downloads
325
Readme
short-url
url-shortening abstraction that uses google's url-shortener api
Usage
Shorten a url
var url = require('short-url');
url.shorten('http://www.google.com', function(err, url) {
console.log(url); // http://goo.gl/fbsS
});Expand a shortened url
url.get('http://goo.gl/fbsS', function(err, url) {
console.log(url); // http://www.google.com
});API
shorten(url, callback)
urlexpanded urlcallback(err, url)callback containing shortened url
get(url, callback)
urlshortened urlcallbacker(err, url)callback containing expanded url
