Polar The Explorerlogicbricks.hashnode.dev·Jan 7, 2025Isomorphic Development and ReactJS 🚀1. SPA Challenges Single Page Applications (SPAs) provide great user experience, but they face challenges with SEO (Search Engine Optimization) and initial page load performance. Traditional SPAs rely on client-side rendering, which can lead to slo...1 likejs
Sahda Samierfirebase-and-front-end-developers.hashnode.dev·Dec 28, 2024Firebase and Its Importance for Front-End DevelopersFirebase and Its Importance for Front-End Developers In today's fast-paced development ecosystem, front-end developers often seek tools that can simplify and accelerate the development process. Firebase, a comprehensive app development platform by Go...Firebase
IOi-o.hashnode.dev·Nov 26, 2024Perfume Product CardThis challenge required that I use a mobile-first approach to produce a product-preview card for a perfume. The task This required that I change my workflow from desktop to mobile-first. Approach I approached the task with a Flex layout in mind. This...HTML
Rohan Kumar Pandeyrohanpandey.hashnode.dev·Oct 1, 2024React data fetching along with best practicesEver felt like fetching data in React is trickier than making the perfect cup of coffee? One minute, everything’s smooth, and the next, you’re dealing with an endless loading spinner or a mystery error message. But don’t worry—everyone’s been there! ...44 readsReact
Rohan Kumar Pandeyrohanpandey.hashnode.dev·Sep 28, 2024Understanding debouncing in React application.What is debouncing in layman's terms??? Debouncing means limiting the rate at which function gets executed in the application. It prevents the unwanted repetitive function call within a short timeframe. For example you’ve created an application which...1 likeReact
Soulisozzy98.hashnode.dev·Sep 9, 2024How React helps developers to develop complex applications better, faster, and cleaner.React is considered the best framework (though it’s technically a library) in the world. It’s literally perfect for everything. Such claims are common on the internet because React was the new trend adopted by many companies. Tech influencers on YouT...React
KodaKodamakodakodama.hashnode.dev·Sep 5, 2024Easy Guide to Hoisting in JavaScriptIntroduction JavaScript has some strange things that can confuse people, and hoisting is one of them. Hoisting means you can use variables and functions before you declare them in your code. But how does this work, and what should you watch out for? ...JavaScript
Animesh Shrivatrishrivatri.hashnode.dev·Aug 30, 2024Are feature flag limited to booleans ?No, feature flags are not limited to just boolean values. When I got to know about feature flag I thought the application was only to toggle features for the users. { "SERVICE_1":true, "SERVICE_2":false, .... } But recently while working... feature flags
Lukman Badrubadrulukman.hashnode.dev·Aug 11, 2024Understanding Key Features of DOM, Shadow DOM, Virtual DOMIn the ever-evolving world of web development, the Document Object Model (DOM), Shadow DOM, and Virtual DOM are important concepts that shape how we interact with web pages and build dynamic applications. These terms are frequently used in front-end ...1 likeDOM manipulation
ADEDIRAN FLOURISHflourish.hashnode.dev·Aug 10, 2024Understanding CSS Box ModelIntroduction As a beginner when designing and developing websites, the CSS box model is one of the core ideas you should understand. At first the box model might seem like a very small detail but it is an important aspect of how elements are arranged...CSS