Connect, manage, and visualize your Supabase data with this powerful dashboard.
Manage your database, authentication, storage, and more through our intuitive interface.
Browse, query, and manage your Postgres tables with a beautiful interface.
Try it nowView and manage your Supabase Auth users with advanced filtering options.
Try it nowGet started in seconds and unlock the full potential of your Supabase backend.
// Initialize Supabase client
const supabase = createClient(
'https://yourproject.supabase.co',
'your-anon-key'
);
// Example query
const { data, error } = await supabase
.from('todos')
.select('*')
.limit(10);