1.0.2 • Published 8 years ago

long-url v1.0.2

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

long-url

What

Reverse url shortener. Get the location of those shortened urls.

Installation

npm install -g long-url

or

npm install --save long-url

Usage

CLI

$ reverse-url http://ow.ly/W7oOu

// Output: >> http://ow.ly/W7oOu is http://bjarneo.codes/

JavaScript

var reverse = require('long-url');

reverse('http://ow.ly/W7oOu', function(err, url) {
    if (err) {
        throw new Error(err);
    }

    console.log(url);
});

// Output: http://bjarneo.codes/

Tests

npm test

Contribution

Contributions are appreciated.

License

MIT-licensed. See LICENSE.