We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
A simple npm package to shorten your long urls to short url for reactjs
#Installation
npm i shortmyurl
yarn add shortmyurl
pnpm add shortmyurl
#Usage 1import shortener from "../node_modules/shortmyurl/";async function shortenUrl() { const shortenedUrl = await shortener("https://www.google.com"); } shortenUrl();#Usage 2import shortener from "../node_modules/shortmyurl/";const shortenedUrl = shortener("https://www.google.com").then((res) => { const shortenedUrl = res; });