SdkIntegrations
Integrations
Third-party service and platform integrations including databases, cloud providers, and SaaS tools
The SDK provides seamless integrations with popular third-party services and platforms.
Available Integrations
Databases
- ClickHouse - Analytics database
- MongoDB - Document database
- Neon - Serverless Postgres
- PostgreSQL - Relational database
Cloud Platforms
- Cloudflare - Edge computing platform
- Google Cloud Platform - Google Cloud services
- Vercel - Deployment platform
AI & ML
- Gemini - Google's AI models
Business Tools
- Airtable - Collaborative database
Authentication
- OAuth - OAuth 2.0 authentication
Quick Start
import { $ } from 'sdk.do'
// Connect to Postgres
const db = $.Database.connect('postgres', {
host: process.env.DB_HOST,
database: 'myapp'
})
// Query data
const users = await db.query('SELECT * FROM users')
// Use Gemini AI
const response = await $.AI.gemini.generate({
prompt: 'Analyze this data',
model: 'gemini-2.0-flash-exp'
})Related
- Services - Internal services
- Data & Storage - Data management
- AI & ML - AI/ML tools