expo-drizzle-studio-plugin
v0.2.1
Published
Expo DevTools Plugin for Drizzle Studio
Downloads
257,558
Readme
Drizzle Studio for Expo SQLite
Expo dev tools plugin for you to browse your Expo SQLite data with Drizzle Studio 🎉
Get Started
Add Expo SQLite to your project
Install expo-drizzle-studio-plugin
npm i expo-drizzle-studio-pluginSet up Drizzle Studio plugin
import { useDrizzleStudio } from "expo-drizzle-studio-plugin";
import * as SQLite from "expo-sqlite";
import { View } from "react-native";
const db = SQLite.openDatabaseSync("db");
export default function App() {
useDrizzleStudio(db);
return <View></View>;
}Run an Expo app with Expo SQLite on a physical device, simulator or emulator. Web is not supported.
npx expo startIn the terminal with "start" process, press shift + m to present the Dev Tools menu and choose expo-drizzle-studio-plugin from the list. Drizzle Studio will open in a new web browser tab.
