Andrew Baisdenandrewbaisden.hashnode.dev·12 hours agoFeaturedPubNub vs Pusher creating a realtime messaging app in ReactReal-time data is one of the core pillars for modern applications these days. Having a system that is capable of sending bi-directional information allows us to stay up to date with a variety of information. Such examples can include messaging applic...Discuss·12 likeswebdev
Rajat Saraswatrajatdev9.hashnode.dev·14 hours agoReact 19: Understanding the Latest Game Changing FeaturesIntroduction With the release of React 19, developers are in for a treat! From automated performance improvements to more seamless async handling, React 19 is packed with features that make development smoother and faster. TL;DR If you're eager to di...Discuss·10 likesReact
Rory Murphyapidna.hashnode.dev·9 hours agoRevolutionising Developer Experience in API IntegrationDeveloper Experience (DX) is a crucial aspect of the software development lifecycle, shaping how smoothly developers interact with tools, frameworks, and APIs. A streamlined DX is essential in API integration, where efficiency and simplicity can sig...DiscussAPIs
David NealforBuilder.iobuilderio.hashnode.dev·12 hours agoBuild Web Apps Absurdly Fast with ViteLet’s face it: the frontend build process has been slow and complicated for too long. Whether you’re dealing with Webpack, Parcel, or your custom Frankenstein monster setup (we’ve all been there), configuring and bundling a web app can be a drag. Vit...Discussvite
Định Nguyễn Trươngdinhdev.hashnode.dev·17 hours agoThe Evolution of Web Rendering: SSG, SSR, CSR...The web evolving, we aren’t living in a world of simple static website anymore. There are a lot of options for developers nowaday: SSG, SSR, CSR,… Each of the rendering technique has unique set of pros and cons, so choosing the right one for your pro...DiscussServer side rendering
Sagnik Santrasagnik.hashnode.dev·Sep 12, 2024Understanding Async and Promises in JavaScript: A Fun Dive Into the World of Asynchronous ProgrammingJavaScript is a quirky language. From the way it handles callbacks to how it dances around synchronous and asynchronous tasks, it can sometimes feel like navigating through a maze. But have no fear—by the end of this blog, async/await and promises wi...DiscussJavaScript
CrabNebulaforCrabNebulacrabnebula.hashnode.dev·Sep 12, 2024💎 of solid-primitives, part 3: set, map, triggerAuthor: @lexlohr, developer at CrabNebula and Solid.js ecosystem team member Solid.js is already pretty powerful, but even so, there are things it cannot do out of the box. Here’s where the community comes in and provides packages to enhance your de...Discusssolidjs
AFUBE ANGEL CHINENYEangel-afube.hashnode.dev·Sep 12, 2024A Simple HTTP Status Code Cheat, Maybe?I used to be puzzled by how senior developers instantly knew what to do based on the HTTP status codes they saw in the network tab. They would glance at the response and say things like, “Let me check the endpoint or payload,” or “It’s something on t...Discusswebdev
Kushal Daskushaldas.hashnode.dev·Sep 12, 2024Understanding the CSS Box ModelWhat is the CSS Box Model? 📦 The CSS Box Model is a fundamental concept in web design that describes how elements on a web page are structured and displayed. It defines the space around and inside an element, and how these spaces interact with each ...Discuss·1 likeWeb-devbox-model
Vishal Yadavvyan.hashnode.dev·Sep 12, 2024Understanding Local Storage in JavaScriptLocal Storage is an essential browser-based API that allows developers to store, retrieve, and manage data directly in the browser. Unlike session storage, Local Storage persists even after the browser is closed, making it ideal for saving user prefe...DiscussWeb Development