Zukeeper icon indicating copy to clipboard operation
Zukeeper copied to clipboard

Native Developer Tool for Zustand

Results 14 Zukeeper issues
Sort by recently updated
recently updated
newest added

### Suggestion Cannot find any details when using Zukeeper with immer ### Additional information _No response_ ### ๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ Contributing - [ ] ๐Ÿ™‹โ€โ™‚๏ธ Yes, I'd love to make a PR...

documentation

### Suggestion Can you please explain the technical reason for this assignment? I just tried out zustand in a new microfrontend application and it seems to fit all my needs....

documentation

Hi zukeeper team, I am not sure if this extension is still being maintained, but thank you for your hard work on making this. An extension like this is exactly...

import { create } from "zustand"; import zukeeper from 'zukeeper'; const useSecondGame = create(zukeeper(set) => ({ bears: 123454, increasePopulation: () => set((state) => ({ bears: state.bears + 1 })), removeAllBears:...

I've created a zustand store, and did zukeeper setup as in the doc but the extension doesn't detect my store. The store is setup correctly and is working, but zukeeper...

I wish this extension would bring me peace on state insights. Devtools from redux sucks with zustand.

How do I use with typescript? Typescript Zustand Docs: [https://github.com/pmndrs/zustand/blob/main/docs/guides/typescript.md](https://github.com/pmndrs/zustand/blob/main/docs/guides/typescript.md) getting errors, the syntax is weird with typescript

Hello~ 'next.js' is being used and if you try to run the code below, you will get an error. Please check it. `javascript` import { create } from 'zustand' import...