1.1.3 • Published 10 months ago

@tastekim/url-shortener v1.1.3

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

Tastekim-Shortener

긴 url 을 가독성이 좋은 짧은 url 로 바꾸어주는 모듈입니다. 개인적으로 운영하는 서버를 통해 생성하고 있으며 일정 click count 를 체크해서 expire 하고 있습니다. commonjsESM을 모두 지원합니다. Buy Me a Coffee

Install

npm install @tastekim/url-shortener

Usage

import { TasteShortener } from '@tastekim/url-shortener';

const url = 'http://github.com/tastekim';
const result = await TasteShortener(url);

console.log(result);

// or

const { TasteShortener } = require('@tastekim/url-shortener');

const url = 'http://github.com/tastekim';
const result = await TasteShortener(url);

console.log(result);

Output

interface Response {
  success: boolean;
  message: string;
  shortenUrl: string;
}

Warning

  • 짧은 시간 동안에 shorten url 을 다량 생성하게 되면 대기 시간이 생깁니다.
1.1.3

10 months ago

1.1.2

10 months ago

1.1.1

10 months ago

1.1.0

10 months ago