Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

emoji-url-shortener

cagataycali50MIT1.5.7

Own your own url shortener as a service.

url, shortener, url, shortener, on, your, own, service

readme

Shitty url shortener, emoji powered.

url-shortener

Deploy your own shitty url shortener.

Shitty, works well in heroku environment. It requires NodeJS and MongoDB.

Deploy

Usage In Command Line Interface

Install

npm i -g emoji-url-shortener;

Usage

shorten https://github.com 👎👍

Usage In Programmatic API

Install

npm i -S emoji-url-shortener

Usage

const Shortener = require('emoji-url-shortener');

const shorten = new Shortener();
shorten.pick({url: 'https://github.com/', emoji: '👎👍'})
  .then(response => console.log(response))
  .catch(error => console.log(error))