It works in theory, but... For now, this project is a demo merely to demonstrate how a URL Shortener and QR Code Generator might work, using Javascript for the frontend and Python for the backend. As a result, the generated URL might not actually be shorter than the original (because of the use of a free domain) and also takes a long time to generate (because Render spins down with inactivity). However, all other functionalities will function as expected.
- Vite (Build)
- React (Front-End Framework)
- TailwindCSS (CSS Framework)
- Flask (Backend)
- cs50 Library For Python (Backend)
- PostgreSQL (Database)
- ElephantSQL (Database Provider)
- Vercel (Front-End Hosting)
- Render (Backend Hosting)
This project also provides an experimental minimal open API which does not require the use of an API key or any authentication method. Below are some code snippets to demonstrate their usage.
const url = 'https://ant-erqz.onrender.com/api/v1/generate_url';
const requestData = { start_url: 'your_actual_url_here'};
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(requestData),
})
.then (response => {
console.log(response)
})
const url = 'https://ant-erqz.onrender.com/api/v1/generate_qr';
const requestData = { start_url: 'your_actual_url_here'};
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(requestData),
})
.then (response => {
console.log(response)
})