κΈ΄ url μ κ°λ
μ±μ΄ μ’μ 짧μ url λ‘ λ°κΎΈμ΄μ£Όλ λͺ¨λμ
λλ€.
κ°μΈμ μΌλ‘ μ΄μνλ μλ²λ₯Ό ν΅ν΄ μμ±νκ³ μμΌλ©° μΌμ click count λ₯Ό 체ν¬ν΄μ expire νκ³ μμ΅λλ€.
commonjs
μ ESM
μ λͺ¨λ μ§μν©λλ€.
Buy Me a Coffee
npm install @tastekim/url-shortener
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);
interface Response {
success: boolean;
message: string;
shortenUrl: string;
}
- 짧μ μκ° λμμ shorten url μ λ€λ μμ±νκ² λλ©΄ λκΈ° μκ°μ΄ μκΉλλ€.