Skip to content
This repository was archived by the owner on Jul 28, 2026. It is now read-only.

Repository files navigation

Expo SQLite Dev Plugin

expo-sqlite-devtools

An Expo SQLite DevTool that can run in an Expo App.

Installation

  • Add the package to your Expo project:

    npx expo install expo-sqlite-devtools
    
  • Integrate Expo SQLite with the DevTool hook:

    import { useSQLiteDevTools } from 'expo-sqlite-devtools';
    
    const db = new SQLite.openDatabaseSync(...);
    
    export default function App() {
      useSQLiteDevTools(db);
    
      return (
        <View>
          {/* ... */}
        </View>
      );
    }

Used by

Contributors

Languages