提供本人写的一个短链和图床工具

无聊搞了个图床和短链工具,后端go写的,短链算法是自研的。

支持web,微信订阅窗口,也有npm包。

web地址:https://tiyee.cn/web_site/

微信订阅号请关注以下二维码:

只要直接往这订阅号窗口发送链接或图片,就可自动生成短链和图床链接

npm请执行: npm install tiyee-url

'use strict';

var tiyee = require('tiyee-url');

var test = async function(){
    try{
        var longUrl     = 'https://baidu.com/';
        var shortUrl    = await tiyee.shortUrl(longUrl);
        console.log(shortUrl);
    }catch(e){
        console.log(e);
    }
};

test();