nest-tinyurl
v0.0.2
Published
a tinyUrl module for nestjs
Downloads
5
Readme
Description
This's a tinyUrl module for Nest to generate short url.
Installation
$ npm install nest-tinyurl
Quick Start
Include entity
export { TinyUrl } from 'nest-tinyurl';
Include module
import { TinyUrlModule } from 'nest-tinyurl';
Use service
import { TinyUrlService } from 'nest-tinyurl';
generate
TinyUrlService.generateShortUrl(url)
get
TinyUrlService.getUrlByShortUrl(url)