Skip to content

itsjatinnagar/expo-sqlite-devtools

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>
      );
    }

About

An Expo DevTools Plugin for Expo SQLite

Topics

Resources

License

Stars

Watchers

Forks