I’m thinking about creating my first url shortener in node.js, a training project, but then I had a doubt, the site will be hosted on a domain abc.com, but I want it to shorten the url with the domain abc.me
The “.com” will contain all the code that receives the long url and shortens it, but that’s where my question comes from, in the standard way it will be shortened in abc.com, but I want the final result to be abc.me
Any ideas on how to do this?
Naturally, your code must also run at abc.me. Maybe not the exact same app as abc.com but it should have access to the same database, so that it can look up the long url by the short one.
Your web server (e.g. Nginx) could route both abc.me and abc.com to the same Node.js app, and your app can check which domain the request is on and act accordingly.