If you're looking for a Drizzle Studio NPM package to install into your product - you're in the right place! <br>
npm install @drizzle-team/studio
Drizzle Studio is a web based modern database browser which comes in a form of:
1. Drizzle Studio for Local Development for your Drizzle ORM projects
2. Drizzle Studio Chrome Extension which lets you browse PlanetScale, Cloudflare D1, Vercel Postgres and AWS Data API directly in their native consoles
3. Drizzle Studio Gateway(work in progress) is a deployable Dockerized version of Studio on steroids, which you can put into your infrastructure and connect privately to your databases
4. Drizzle Studio Component <- you're here
Drizzle Studio embeddable Component - is a pre-bundled framework agnostic web component of Drizzle Studio which you can embed into your UI(React/Vue/Svelte/VanillaJS/whatever). That is an extremely powerful UI element that can elevate your offering if you provide Database as a SaaS or a data centric SaaS solutions based on SQL or for private non-customer facing in-house usage.
Database platforms using Drizzle Studio:
- Turso, our first customers since Oct 2023!
- Neon, launch post
- SQLite Cloud, launch post
- Hydra
- Tembo, launch post
AI powered platforms for building apps and websites
- Replit, launch post
- Deno, launch post
- Kinsta
- Create.xyz, launch post
- Gibsonai, blog post video
- Sevalla
- Zapi
Data centric platforms using Drizzle Studio:
- Nuxt Hub, Sébastien Chopin's lauch post
- Deco, undergoing integration
Startups using Drizzle Studio:
- Sample Health Care
We also have a set of companies using embeddable Drizzle Studio components for internal use cases
Drizzle Studio has an opt-in SQL query runner:
!image
in-place editable JSON support:
Advanced filtering and lots of other useful stuff:
!image
ts
import type { DrizzleStudioRef } from '@drizzle-team/your-company-studio';
import StudioScript from '@drizzle-team/your-company-studio?raw';
const lightCssVariables = {
"--background": "#ffffff",
...
};
const darkCssVariables = { ... };
function App() {
// create a ref to the drizzle-studio component
const studioRef = useRef(null);
const [theme, setTheme] = useState<'light' | 'dark'>('light');
return (
height: '100%',
width: '100%',
display: 'flex',
flexDirection: 'column',
}}>
export default App
``