0.0.1 • Published 11 years ago
short-url v0.0.1
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
0.0.1
11 years ago