Ashish prajapaticodingashish.hashnode.dev·Jan 19, 2025Creating a URL Shortener with Node.js, Express, and MongoDB: A Step-by-Step GuideIntroduction In the internet age, long and complicated URLs can be a hassle to share or remember. A URL shortener service provides an elegant solution by converting lengthy URLs into compact, shareable links. In this blog post, we will learn how to b...BackendUrl Shortener
Ninad Naiktech.ninadnaik.xyz·Jan 1, 2025Using Redis as a primary databaseWhen we think of a database, we think about rows, columns, tables, and the relationships between different tables. And we are correct about this. Most applications we use/develop use some sort of relational database, such as PostgreSQL, MySQL, and Ma...35 readsRedis
Mustufa khancoder-class.hashnode.dev·Dec 26, 2024Designing a URL Shortener with AWS IntegrationStep 1: Clarify Requirements Functional Requirements: Shorten a given long URL and return a unique short URL. Redirect users to the original URL when they visit the short URL. Support custom short URLs (optional). Provide analytics (optional): Tr...Url Shortener
SANKALP HARITASHsankalp-haritash.hashnode.dev·Dec 23, 2024Design a URL Shortener (e.g., TinyURL)A URL shortener is a tool that converts lengthy URLs into short, shareable links while maintaining the functionality of redirecting users to the original URL. Popular examples include bit.ly and tinyurl.com. In this guide, we’ll explore the process o...System DesignSystem Design
Kumar Priyanshukpriyanshu.hashnode.dev·Dec 20, 2024Designing a URL Shortening Service ( TinyURL )Introduction A URL shortener is a program or service that, while still rerouting users to the original URL, shortens lengthy, complicated URLs into shorter, easier-to-manage connections. Because they are simpler to type, less prone to typos, and less...Url Shortener
Birkaran SachdevforfreeCodeCampfreecodecamp.org·Nov 19, 2024How to Build a Scalable URL Shortener with Distributed Caching Using RedisIn this tutorial, we'll build a scalable URL shortening service using Node.js and Redis. This service will leverage distributed caching to handle high traffic efficiently, reduce latency, and scale seamlessly. We'll explore key concepts such as consi...Redis
Gedion Danielblog.gediondaniel.dev·Nov 2, 2024Amazon S3 – Pre-Signed URLs: My Experience Making File Sharing EasierWhen I first started working with Amazon S3, I knew it was a great way to store and manage files in the cloud. But I quickly ran into a challenge: how could I share a file with someone securely without opening up my entire bucket? After some searchin...AWS
Sylvester Daswww.minifyn.com·Oct 26, 2024Getting Started with MiniFyn: Your Guide to Smarter URL ShorteningIf you've ever needed to share long URLs in emails, social media, or marketing campaigns, you know how unwieldy they can become. That's where MiniFyn comes in - we've built a URL shortening service that's both powerful and refreshingly simple to use....WebTools
Janani Asokanwhat-is-ip-address.hashnode.dev·Oct 4, 2024How Does Website worksA website is a collection of web pages that are accessible via the internet. You can access the web pages (Webpage is a single document or file) using URL or domain name of a particular website. Collection of web pages make up a website. URL to acces...#howdoeswebsiteworks
Rishabh Bhattrishabhcodes.hashnode.dev·Sep 11, 2024How URL Shorteners Work & How to Build One with Server-Side Rendering using Express and EJSIntroduction: Have you ever wondered how those tiny URLs work behind the scenes? Whether you're sharing links on social media or simplifying a long link for your users, URL shorteners are super handy. In this blog post, we’ll walk through how URL sho...10 likes·93 readsNode.js