An Expo DevTools Plugin for inspecting SQLite databases in Expo apps. Current stable version is 0.0.2, released as an early experimental package. It integrates with the Expo DevTools interface to provide live queries, schema viewer, and data browsing. Key differentiator: it requires no separate server or database viewer, works directly inside the Expo development tools. Alternative to react-native-flipper plugins but Expo-native. Currently limited to Expo SDK 50+ and peer dependency on expo.
npm install expo-sqlite-devtoolsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows minimal integration: import hook, open database, call hook with db instance inside App component.
Ensure the hook is called inside a React function component, not in a plain function or outside component.
Update expo to version 50 or later.
Pin exact version in package.json to avoid breaking changes.
Ensure your app is running in Expo development mode and DevTools are connected.
Use `import { useSQLiteDevTools } from 'expo-sqlite-devtools'` instead of `require`.Move the hook call into a React function component (e.g., the App component).
Run `npx expo install expo-sqlite` to install the database module.