Get your first DEATHBASE project running in under 60 seconds.
Sign up and create a new project from the dashboard. You'll receive:
npm install @deathbase/js
import { createClient } from '@deathbase/js'
const db = createClient(
'https://your-project.deathbase.pages.dev',
'your-anon-key'
)
// Query your database
const { data, error } = await db
.from('users')
.select('*')
.limit(10)
console.log(data)