Skip to content

Debug Mode

Debug mode helps you inspect an app without guessing where the state, route, action, or API problem started.

bash
zz dev --debug

What it shows

PanelPurpose
Current routeShows the active route.
Registered pagesLists known routes.
State treeShows current app state.
Action logShows recent actions.
API logShows request status and history.
Last errorShows the most recent runtime error.

When to use it

Use debug mode when click handlers do nothing, route rendering fails, state does not update, API calls fail, or a template behaves differently than expected.

Released under the MIT License.