Nile Bitsnilebits.hashnode.dev·Sep 10, 2024FeaturedScaling React Apps with Reusable List ComponentsBuilding scalable applications in React requires more than just solid business logic. The architecture of your components plays a significant role in how maintainable, performant, and flexible your application becomes as it grows. One of the fundamen...Discuss·33 likes·180 readsJavaScript
SB'Techsharesbtechshare.hashnode.dev·17 hours agoState Management in React: When to Use Context API vs. ReduxIntroduction As React applications grow in complexity, managing state becomes increasingly challenging. Two popular solutions for state management in React are the Context API and Redux. But how do you decide which one to use? In this blog post, we’l...DiscussState Management
Aman Mishraamanmishra.hashnode.dev·Sep 14, 2024Understanding State in ReactIn React, state refers to data that a component maintains over time, acting like the component’s memory. It's essential for storing information that needs to persist throughout the lifecycle of the app. For example, state is used in features like not...Discuss·2 likesReact
Meir-Josef CohenPromeirjc.hashnode.dev·Sep 12, 2024FeaturedState Management in Astro: A Deep Dive into NanostoresIntroduction Welcome to the first part of "Nanostores in Astro: A Multi-Framework Adventure" series. If you've been grappling with state management in your multi-framework Astro projects, you're in for a treat. Today, we're exploring Nanostores, a li...Buy Verified Cash App Accounts and 4 others are discussing this5 people are discussing thisDiscuss·22 likes·171 readsNanoStoresThats definitely the article I wish i had when starting to use nanostores! the only doc i saw was in the github readme, and its not as nice as this. (And the demo site is AWESOME) Great job! 🌟 5
Yahya Dahiryahyadahir.hashnode.dev·Sep 12, 2024Managing State in React Without Redux: Simpler and Smarter AlternativesIf you have worked with React before, you‘ve probably heard of Redux. It’s a state management tool that helps keep track of data ( or “state” ) in your React apps. While Redux is a powerful, it can feel a bit heavy, especially for smaller projects or...Discuss·1 likeNext.js
고라니드로koranidro.hashnode.dev·Sep 11, 2024[React] 당신은 상태를 필요로 하지 않을 것입니다. #5 - 출시 편지금까지 네 편에 걸쳐 시리즈를 연재했습니다. 여기까지 오면서 파생 상태와 관련된 몇 가지 기능을 함께 구현했었습니다. 2편에서 파생 상태의 보존을 위한 useDerivedState. 3편에서 비동기 파생 상태의 운용을 위한 Fulfilled. 4편에서 부작용을 가진 파생 상태의 운용을 위한 useDerivedStateWithSideEffect. 총 세 가지 핵심 기능들이 있었는데요. 이제는 직접 구현하지 않고 편하게 이 기능들을 사용...Discuss[React] 당신은 상태를 필요로 하지 않을 것입니다.React
QzSeekerqzseeker.hashnode.dev·Sep 11, 2024State Management in React: Making Sense of Context APIAlright, guys! Now that we understand what Context API is all about, let's roll up our sleeves and see it in action. Don't worry if you're new to this – we'll take it step by step, just like following a recipe for your favorite dish. 🍳 Step 1: Setti...Discuss·1 likeReact
Nile Bitsnilebits.hashnode.dev·Sep 10, 2024FeaturedScaling React Apps with Reusable List ComponentsBuilding scalable applications in React requires more than just solid business logic. The architecture of your components plays a significant role in how maintainable, performant, and flexible your application becomes as it grows. One of the fundamen...Discuss·33 likes·180 readsJavaScript
Yves Kalumeyveskalume.dev·Sep 10, 2024Android hot and ready #1 : Preserving your android app stateMany developers know how to survive screen rotations using ViewModel or rememberSaveable, but the bigger questions remain: Why does state get lost in the first place? Why is ViewModel often the go-to solution, and is it the only one? What about other...Discuss·323 readsAndroid Hot and ReadyAndroid
Abhishek Sadhwaniabhisheksadhwani.hashnode.dev·Sep 8, 2024Simplifying React State Management: A Deep Dive into Context API vs ReduxIn React, state management is crucial for building dynamic and scalable applications. As the size of an application grows, so does the complexity of handling state and sharing it between components. Two of the most popular solutions for managing stat...Discuss·13 likesReact
Akshat Soniakshatsoni.hashnode.dev·Sep 8, 2024Understanding Array Mutation in Redux: A Common Pitfall with useSelectorWhat is the Problem? When working with Redux, we often deal with immutable data structures to maintain the predictability of the application state. However, recently I encounter issue is unintentionally mutating the state, especially when handling ar...Discusslearning