shaikhsajid1111 / elfinsurl

elfinsurl is a free and open source URL shortener built with javascript

Home Page:http://www.elfinsurl.tk

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Elfinsurl

elfinsurl is a free and open source URL shortener built with javascript

Usage:

To short a URL , make a JSON POST request to www.elfinsurl.tk/new

Request JSON should like:

{
    "url":"Your long url"
}

Using CURL:

curl -X POST -H 'Content-Type: application/json' -i 'http://www.elfinsurl.tk/new' --data '{
"url" : "Your long url goes here"
}'

Response:

{
  "original_url": "Your long url",
  "short_url": "elfinsurl.tk/shortcode" //your short url
}

To use that short url just open it in browser and done!.

Tech:



Note: Short URL will last for only 6 months period

LICENSE:

MIT

About

elfinsurl is a free and open source URL shortener built with javascript

http://www.elfinsurl.tk

License:MIT License


Languages

Language:JavaScript 100.0%