Skip to content

TANISHA3665/URL_Shortener

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

URL Shortener

Design a URL shortener service that takes in a valid URL and returns a shortened URL, redirecting the user to the previously provided URL.

Also keep track of total visits /clicks on the URL

Routes

  • POST/URL - Generates a new short URL and returns the shortened URL in the format example.com/random-id.

  • GET/:id - Redirects the user to the original URL

  • GET/URL/analytics/:id - Returns the clicks for the provided short id.