Popularity
2.5
Stable
Activity
0.0
Stable
160
3
22

Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags: URL     Shortener     URL Shorteners     On     Your     Own     Service    

url-shortener alternatives and similar software solutions

Based on the "URL Shorteners" category.
Alternatively, view url-shortener alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of url-shortener or a related project?

Add another 'URL Shorteners' Software solution

README

Shitty url shortener, emoji powered.

  • [๐ŸŒโœŒ๐Ÿผ.ws](http://๐ŸŒโœŒ๐Ÿผ.ws) (I did not renew the domain name again because it was expensive.)
  • [๐Ÿ‘Ž๐Ÿ‘.ws](http://๐Ÿ‘Ž๐Ÿ‘.ws/) (I did not renew the domain name again because it was expensive.)
  • coool.ws (I did not renew the domain name again because it was expensive.)
  • shortener.cagatay.pro

[url-shortener](public/readme.png)

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))