0.0.1 • Published 11 years ago

short-url v0.0.1

Weekly downloads
9
License
MIT
Repository
github
Last release
11 years ago

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)

  • url expanded url
  • callback(err, url) callback containing shortened url

get(url, callback)

  • url shortened url
  • callbacker(err, url) callback containing expanded url