asyncredux-debugging
Installation
SKILL.md
Debugging AsyncRedux Applications
AsyncRedux provides several tools for debugging and monitoring your application's state, actions, and behavior during development.
Inspecting Store State
Access the current state directly from the store:
// Direct state access
print(store.state);
// Access specific parts
print(store.state.user.name);
print(store.state.cart.items);