【図解解説/入門】ReactとJotaiを使って実用的なNotion風ノートアプリを開発するチュートリアル【Convex/TypeScript/MDXEditor】
https://qiita.com/Sicut_study/items/ee41f1bb59fcda45a50b?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
【図解解説/入門】ReactとJotaiを使って実用的なNotion風ノートアプリを開発するチュートリアル【Convex/TypeScript/MDXEditor】
https://qiita.com/Sicut_study/items/ee41f1bb59fcda45a50b?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
2025年のReact状態管理、正直どれがいいの? - Zustand, Jotai, Redux, Recoil, Valtio, XState, TanStack Query をざっくり解説
https://qiita.com/suin/items/e2df562b0c2be7e2a123?utm_campaign=popular_items&utm_medium=feed&utm_source=popular_items
Did you know I previously wrote a book about Zustand, Jotai, and Valtio? I think the content is still relevant (at least until the React Compiler lands ).
In case you missed it, you can find the link on my site https://daishikato.com
Check out our new kid in the Jotai ecosystem: jotai-history.
Give it a try and share your feedback!
Zustand seems more popular than Jotai right now. So, I experimented with creating a Zustand-flavored wrapper around Jotai. If I can get some feedback from this, I’d consider it a success!
GitHub https://github.com/jotaijs/jotai-zustand
Demo https://stackblitz.com/github/jotaijs/jotai-zustand/tree/main/examples/02_create?file=src%2Fapp.tsx
Hi, can anyone, who is familiar with functional programming, read, review and share your feedback please?
https://jotai.org/docs/basics/functional-programming-and-jotai
Just released jotai-suspense v0.4.0! https://github.com/jotaijs/jotai-suspense
This version includes `useAtomValue` hook. The name is the same as the one in `jotai`, but unlike the original one, this doesn't resolve promises. You need to explicitly use React 19 `use` hook or `react18-use` lib.
Have you experienced hydration errors with @JotaiJS and @NextJS?
We have a new library to tackle the SSR integration with Jotai. Please give your feedback.
️ Jotai https://jotai.org has reached 18k stars on GitHub! Huge thanks to our amazing community for all the support. Let's keep improving it together!
Just published a new blog post!
How Jotai Was Born
Is it just an alternative to Recoil?
jotai-scope v0.7.0 has been released! I started it as a proof-of-concept project, but it now has two maintainers and this version is more stable than ever!
ScopeProvider is used to scope atoms. It's a capability often requested by Jotai users.
jotai-xstate v0.5.0 has been released! It finally migrates to XState V5. Huge thanks to the contributors!
Now, we may need to update the docs and examples. Would anyone like to volunteer?
Jotai is basically modeled after useState, which is reactive. However, you might want to read atom values without being reactive, like in a game app.
Just released jotai-game v0.2.0, an experimental library providing `useTransientAtom`.
There is another subtle difference between TC39 signals and Jotai atoms:
- TC39 signals are pull-based (lazy evaluation)
- Jotai atoms are a mix (but not a combination) of push and pull (For mounted atoms, eager eval; otherwise, lazy eval. This is to avoid React rerenders.)
jotai-zustand v0.4.0 has been released!
This library allows you to create a @JotaiJS atom that is connected to a Zustand store. It's introduced for global access, but as Jotai v2 has the Store API, I'm not sure of the use cases.
Just released jotai-xstate v0.4.0! This is a @JotaiJS library for XState. The atomWithMachine utility creates an atom with a machine.
Unfortunately, this version is still for XState v4. We're looking for a maintainer who can also work on migrating to v5.
jotai-valtio v0.5.0 has been released! This library brings Valtio capabilities to Jotai atoms. It might not be widely used at the moment, but it’s an interesting bit to learn!
Repo: https://github.com/jotaijs/jotai-valtio
Docs: https://jotai.org/docs/integrations/valtio
jotai-trpc v0.7.0 has been released! This is a binding library for @JotaiJS and @tRPCio. It can create an atom that connects to a vanilla tRPC client.
The implementation is just a wrapper, so it's fairly stable. Check it out!