This project is the opposite of a url "shortener".
We take in a url and spit out a url (usually longer) created using a random wikipedia article's contents.
The project is powered by a javascript frontend and backend, with MongoDB as the choice to store all the original and 'wikified' urls.
Original URL: https://github.com/lennysgarage/WikiLink
It's pretty fun to mess around and get all different kind of links.
The project is being run using netlify as the frontend with automatic push to deploy.
The project is using a Heroku free dyno, so on startup the site may take a few seconds to respond.
To install the required dependencies
cd api
npm i
cd client
npm i
In api/
create a .env file & insert
MONGO_URI=<mongodb_uri>
In client/
echo "NODE_ENV=development" > .env
Lastly open a terminal for /api & execute
npm start
And open a terminal for /client & execute
npm start
Now you can visit localhost:3000 and test out your own url "extender"