NHariman / FreeCodeCamp-urlshortener

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

URL Shortener Microservice

This is the boilerplate code for the URL Shortener Microservice project. Instructions for building your project can be found at https://www.freecodecamp.org/learn/back-end-development-and-apis/back-end-development-and-apis-projects/url-shortener-microservice.

The Hint

Do not forget to use a body parsing middleware to handle the POST requests. Also, you can use the function dns.lookup(host, cb) from the dns core module to verify a submitted URL.

Tasks

  • You can POST a URL to /api/shorturl and get a JSON response with original_url and short_url properties. Here's an example: { original_url : 'https://freeCodeCamp.org', short_url : 1}
  • When you visit /api/shorturl/<short_url>, you will be redirected to the original URL.
  • If you pass an invalid URL that doesn't follow the valid http://www.example.com format, the JSON response will contain { error: 'invalid url' }

About


Languages

Language:JavaScript 82.9%Language:CSS 17.1%