URL Shortener Microservice https://urlshortener.radiidev.repl.co/
Go to file
Randell Dawson fb1d7c2ced
Merge pull request #6 from abhijeetps/gomix
Fixed Deprecation Warning of Mongoose - Error
2020-11-02 11:48:18 -08:00
public Initial commit from Gomix. 2017-02-18 18:57:45 +00:00
views fix: change link to use solution api, update forum url 2020-07-22 14:14:08 +09:00
.gitconfig Initial commit from Gomix. 2017-02-18 18:57:45 +00:00
.hyperdev-assets Initial commit from Gomix. 2017-02-18 18:57:45 +00:00
.replit added .replit file 2020-07-22 14:14:08 +09:00
package-lock.json Update Mongoose and Mongodb versions (#12) 2020-08-07 19:05:46 +09:00
package.json Update Mongoose and Mongodb versions (#12) 2020-08-07 19:05:46 +09:00
README.md added .replit file 2020-07-22 14:14:08 +09:00
server.js Merge branch 'gomix' into gomix 2020-11-02 19:45:42 +00:00

API Project: URL Shortener Microservice for freeCodeCamp

Run on Repl.it

User Stories

  1. I can POST a URL to [project_url]/api/shorturl/new and I will receive a shortened URL in the JSON response. Example : {"original_url":"www.google.com","short_url":1}
  2. 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"}. HINT: to be sure that the submitted url points to a valid site you can use the function dns.lookup(host, cb) from the dns core module.
  3. When I visit the shortened URL, it will redirect me to my original link.

Creation Example:

POST [project_url]/api/shorturl/new - body (urlencoded) : url=https://www.google.com

Usage:

[this_project_url]/api/shorturl/3

Will redirect to:

https://www.freecodecamp.org/forum/