1.0.6 • Published 8 years ago

succink v1.0.6

Weekly downloads
1
License
ISC
Repository
-
Last release
8 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

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago