An application that takes in a URL at an API endpoint and returns the short version after DNS evaluation.
-
JavaScript(ECMAScript 2015)
-
NodeJS
-
ExpressJS
-
DNS Module
-
MONGODB
- I can POST a URL to
https://reagan-urlshort.glitch.me/api/shorturl/newand I will receive a shortened URL in the JSON response. Example :{"original_url":"www.google.com","short_url":1} - If I pass an invalid URL that doesn't follow the valid
http(s)://www.example.com(/more/routes)format, the JSON response will contain an error like{"error":"invalid URL"}. - When I visit the shortened URL, it will redirect me to my original link.