Popularity
2.4
Stable
Activity
0.0
Stable
161
2
20
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.
-
devShort
DISCONTINUED. A simple and privacy-friendly URL shortener for web developers, admins and all professionals. -
Lstu
Lightweight URL shortener. Read-only mirror of https://framagit.org/fiat-tux/hat-softwares/lstu -
Purl
Purl (Petite URL) is an open source project with the goal of providing you with your own private URL shortener! -
Link-shortener-bot
Host your own link shortener that works with a bot. Just send the link to a bot and it'll take care of the rest for you.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of url-shortener or a related project?
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.
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))