1.0.3 • Published 3 years ago

minify-url v1.0.3

Weekly downloads
7
License
MIT
Repository
-
Last release
3 years ago

Minify URL

A simple url shortener service.

Installation

npm install --save minify-url

Usage

const minifyUrl = require("minify-url");

const longUrl =
  "https://www.google.com/search?q=mini-url+Shortner+npm&oq=mini-url+Shortner+npm&aqs=chrome..69i57.9701j0j9&sourceid=chrome&ie=UTF-8";

minifyUrl(longUrl);

/* 
 {
     shortUrl: "https://www.google.com/Axs145,
     originalUrl: "https://www.google.com/search?q=mini-url+Shortner+npm&oq=mini-url+Shortner+npm&aqs=chrome..69i57.9701j0j9&sourceid=chrome&ie=UTF-8"
 }
*/