All Projects → kulkultech → tinyurl-client

kulkultech / tinyurl-client

Licence: other
Easily use TinyURL in your JavaScript app. This library is no longer maintained.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to tinyurl-client

urlzap
⚡️ Your own static URL shortener
Stars: ✭ 57 (+147.83%)
Mutual labels:  shorten-urls
bitly-vuejs
An URL shortener made with Bitly API, VueJS and ChuckCSS
Stars: ✭ 23 (+0%)
Mutual labels:  shorten-urls
gShort
URL Shortener without all the crap
Stars: ✭ 80 (+247.83%)
Mutual labels:  shorten-urls
ursho
URL Shortener Service in Go
Stars: ✭ 118 (+413.04%)
Mutual labels:  shorten-urls
AdflyUrlGrabber
A python script designed to grab the original url from an adfly url without opening it :D
Stars: ✭ 53 (+130.43%)
Mutual labels:  shorten-urls
YOURLS
🔗 The de facto standard self hosted URL shortener in PHP
Stars: ✭ 9,007 (+39060.87%)
Mutual labels:  shorten-urls
bifrost
🌉 The rainbow bridge. URL shortener for Vercel.
Stars: ✭ 28 (+21.74%)
Mutual labels:  shorten-urls
Kutt
Free Modern URL Shortener.
Stars: ✭ 5,480 (+23726.09%)
Mutual labels:  shorten-urls
urlshortener-rs
A very-very simple url shortener for Rust
Stars: ✭ 34 (+47.83%)
Mutual labels:  shorten-urls
ruby-bitly
A simple bit.ly ruby client to shorten URLs, expand or get number of clicks on a bitlink.
Stars: ✭ 17 (-26.09%)
Mutual labels:  shorten-urls
1y
A template project to build a short URL manager with Eleventy
Stars: ✭ 68 (+195.65%)
Mutual labels:  shorten-urls
small-sh
Um encurtador de URL's gratuito e Open source. Torne suas URL's um tanto pequenas forma rápida e gratuita
Stars: ✭ 30 (+30.43%)
Mutual labels:  shorten-urls

TinyURL JavaScript Client

Contact me on Codementor Made in Indonesia Build Status

Easily use TinyURL in your browser.

Getting Started

  1. Install it

     $ npm install @kulkul/tinyurl-client
    
  2. Use it

import shortenUrl from "@kulkul/tinyurl-client";

shortenUrl("https://kulkul.tech").then((result) => {
    console.log({ result }); // https://tinyurl.com/<slug>
});

To use it using alias you can do the following

import shortenUrl from "@kulkul/tinyurl-client";

shortenUrl("https://kulkul.tech", "shorted-kulkul").then((result) => {
    console.log({ result }); // https://tinyurl.com/shorted-kulkul
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].