zustand-log-and-expose 中文文档教程
记录并公开 zustand 的中间件
这是 Zustand 状态管理器的中间件,用于记录控制台中的存储更改并在窗口对象中公开它们。
用法很简单:
const logAndExpose = createLogAndExposeMiddleware("ConsolePrefix");
然后使用 logAndExpose
变量作为中间件。
您将传递给创建者函数的参数将前置控制台消息。
任何商店更改后,都可以通过 window._zustand
访问公开的商店。
Log and expose middleware for zustand
This is the middleware for Zustand state manager that logs store changes in console and exposes them in window object.
Usage is simple:
const logAndExpose = createLogAndExposeMiddleware("ConsolePrefix");
Then use logAndExpose
variable as middleware.
Arguments that you will pass into the creator function will prepend console message.
Exposed stores are available through window._zustand
after any change of store.