AsyncStorage / localStorage monitor

Enabling Storage Monitor

Storage Monitor features:

  • Storage events interception
  • Entire storage snapshots

AsyncStorage (React Native)

  import AsyncStorage from '@react-native-async-storage/async-storage';

  // Call the init method.
  CodeBud.init("YOUR API KEY HERE", INSTRUCTIONS);

  CodeBud.enableAsyncStorageMonitor(AsyncStorage);

localStorage (Browsers)

  // Call the init method.
  CodeBud.init("YOUR API KEY HERE", INSTRUCTIONS);

  CodeBud.enableLocalStorageMonitor(localStorage);

That's it! Now you should be able to observe storage via events in timeline and snapshots (on "network" tab in GUI).

Was this page helpful?