1.0.6 • Published 7 years ago

succink v1.0.6

Weekly downloads
1
License
ISC
Repository
-
Last release
7 years ago

succink - Succinct Links

A promise based shortlink generator.

npm install succink

Promise

succink.generateShortLink('https://github.com/BlakeGuilloud/succink/blob/master/README.md')
  .then((response) => {
    response === {
      short_url: 'http://tael.ninja/0ioctcx',
      long_url: 'https://github.com/BlakeGuilloud/succink/blob/master/README.md',
      err: '',
    };
  });

async / await

const shortLink = await succink.generateShortLink('https://github.com/BlakeGuilloud/succink/blob/master/README.md');

shortLink === {
  short_url: 'http://tael.ninja/0ioctcx',
  long_url: 'https://github.com/BlakeGuilloud/succink/blob/master/README.md',
  err: '',
};
1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago