@short-url/shorturl

1.0.1 • Public • Published

ShortURL – A free URL Shortener for Node JS

Install

npm install @short-url/shorturl

Usage

See examples folder for a complete example

Make a short URL

shortURL.makeShortUrl(url, options, callback)

Where

  • url is the url to make
  • options is an options object
  • callback is the callback to run - callback(error, body)

Example

var makeShortUrl = require("@short-url/shorturl").makeShortUrl;

makeShortUrl("https://www.google.com/", {}, function (error, data) {
    if (error) {
        return console.log('ERROR', error);
    }

    console.log('URL', url);
});

// With async function
makeShortUrl("https://www.google.com/")
    .then((url) => {
        console.log('URL', url);
    })
    .catch((err) => {
        console.log('ERROR', error);
    });

/@short-url/shorturl/

    Package Sidebar

    Install

    npm i @short-url/shorturl

    Weekly Downloads

    3

    Version

    1.0.1

    License

    ISC

    Unpacked Size

    3.64 kB

    Total Files

    4

    Last publish

    Collaborators

    • quoctran18