Pawan Gangwaniblogs.pgangwani.co.in·Nov 16, 2024Understanding Jotai: A Fresh Take on React State ManagementReact state management has evolved significantly over the years, from the simple useState hook to complex state management libraries. Today, let's explore Jotai, a primitive and flexible state management library that brings an atom-based approach to ...DiscussJotai
Pawan Gangwaniblogs.pgangwani.co.in·Oct 19, 2024Crafting Dynamic Forms in React with Form Atoms: A Comprehensive GuideIntroduction In this guide, we’ll explore how to create forms using the form-atoms library. We’ll start with simple forms and gradually move to more complex forms, including lists. This guide will cover the following: Setting up the environment Cre...Discuss·6 likes·138 readsForm Atoms
Pawan Gangwaniblogs.pgangwani.co.in·Oct 1, 2024Mastering State Management in React with Jotai & TypeScript: A Comprehensive GuideThis guide covers: Basic Atoms Dependent Atoms Async Atoms with loadable Scoped Providers Accessing Jotai Atoms Outside Components Prerequisites You’ll need: TypeScript set up in your React project. Install Jotai with npm install jotai jota...DiscussJotai tutorial
Mike Odnisblog.mikeodnis.dev·Sep 26, 2024Beyond Static: Creating a Dynamic Developer Portfolio with Next.js and Modern Web TechIntroduction In today’s digital age, personal branding is crucial for developers looking to stand out in a competitive job market. A personal website that showcases your technical skills, personality, and accomplishments can open doors to new opportu...Discuss·86 readsShadn
Ramu Narasingaramunarasinga.hashnode.dev·May 31, 2024“Mail” example in shadcn-ui/ui manages state using Jotai.Since I am building shadcn-ui/ui from scratch and also documenting how to do so alongside, I am aware that it will take quite some time to understand the code and write it from scratch and prepare the content. I am not rushing the process by directly...DiscussJavaScript
Piyush NanwaniforAtomxelblog.atomxel.com·Feb 23, 2024Top State Management Libraries to use in React NativeIf your apps are simple with minimal features, then you can get away without using state management libraries. But, a lot of production applications have a-lot of features. So, there is a lot of data flowing from one part of the app to the other. And...Discuss·38 readsReact
Prathmesh Jagtapprathmesh.hashnode.dev·Feb 5, 2024Creating Tic-Tac-Toe Using Jotai and reactCreating a Simple Tic-Tac-Toe Game using React and Jotai for state management. What is Jotai? Jotai is a React state management libraryBuild state by combining atoms and renders are automatically optimized based on atom dependency. This solves the e...Discuss·6 likes·149 readsReact
Ivan Garciawhil.hashnode.dev·Nov 2, 2023El Fin de Redux y Context en ReactLa intención de este artículo es presentar un punto de vista diferente al habitual. No pretende convencerte ni obligarte a cambiar, sino más bien invita a explorar una nueva perspectiva. Siéntete cómodo, relájate y saca tus propias conclusiones al co...Discuss·172 readsReact
Muhammed Tijanicontigen.hashnode.dev·Sep 2, 2023Update (global) state outside of React: Jotai's store APITechnically, we're still in React just outside of its lifecycle. Scenario A Jotai atom that manages the app's notifications state. export type Notification = { id: string type: 'info' | 'warning' | 'success' | 'error' title: string me...Discuss·1 like·38 readsReact
Shen Nguyenshennguyen.hashnode.dev·May 5, 2023Understand "Signals" with Solid JS and QwikWhat is "Signals"? "Signals" is a new way to manage states in Solid JS and Qwik. The key difference between Signals and States is that Signals return a getter and a setter, whereas non-reactive systems return a value (and a setter). In Solid JS, crea...Discuss·232 readsReact