Advanced

Internal Hooks

You can use the same hooks the toolkit uses internally to build custom debugging overlays or automated tests.

useGodMode()

Access and set global overrides and security bypasses.

tsx
const { enabled, overrides, setOverride } = useGodMode();

useNetworkInterceptor()

Subscribe to real-time network requests and response data.

tsx
const { requests, clearRequests } = useNetworkInterceptor();

usePerformanceMetrics()

Get live Web Vitals and resource timing data.

tsx
const metrics = usePerformanceMetrics();

useStateInspection()

Interact with LocalStorage, SessionStorage, and Cookies.

tsx
const { localStorageItems, setItem } = useStateInspection();

useRegisteredStores()

Access and monitor all custom stores registered via registerStore.

tsx
const { registeredStores, storeStates } = useRegisteredStores();