惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

N
Netflix TechBlog - Medium
J
Java Code Geeks
爱范儿
爱范儿
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
B
Blog RSS Feed
Google DeepMind News
Google DeepMind News
Jina AI
Jina AI
The GitHub Blog
The GitHub Blog
I
InfoQ
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园_首页
G
Google Developers Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research

Supabase Blog

AI Agents Know About Supabase. They Don't Always Use It Right. Custom OIDC Providers for Supabase Auth 100,000 GitHub stars Supabase docs over SSH Navigating Regional Network Blocks Supabase Joins the Stripe Projects Developer Preview Log Drains: Now available on Pro Supabase Storage: major performance, security, and reliability updates Supabase incident on February 12, 2026 Hydra joins Supabase X / Twitter OAuth 2.0 is now available for Supabase Auth BKND joins Supabase Supabase is now an official Claude connector Supabase PrivateLink is now available Introducing: Postgres Best Practices When to use Read Replicas vs. bigger compute Introducing TRAE SOLO integration with Supabase Supabase Security Retro: 2025 Sync Stripe Data to Your Supabase Database in One Click Building ChatGPT Apps with Supabase Edge Functions and mcp-use Own Your Observability: Supabase Metrics API Introducing iceberg-js: A JavaScript Client for Apache Iceberg Introducing Supabase for Platforms Adding Async Streaming to Postgres Foreign Data Wrappers Build "Sign in with Your App" using Supabase Auth Introducing Seven New Email Templates for Supabase Auth The new Supabase power for Kiro Introducing Supabase ETL Introducing Analytics Buckets Introducing Vector Buckets
Supabase Integrations Marketplace
Thor Schaeff · 2023-08-10 · via Supabase Blog

Supabase Integrations Marketplace

We've been running our Integrations Marketplace in “stealth mode” for about a year now. What started as a dog-fooding project has now transformed into a marketplace with over 60 integrations. (It's also an open source template that you can use yourself).

Supabase Integrations allows Partners to extend the Supabase platform with useful tooling. Today we're adding OAuth2.0 Applications. For Supabase users, this makes it even easier to connect their favorite tools to their Supabase projects. Within minutes you can:

  • Add your favorite Low Code tools on top of your Supabase database.
  • Integrate your favorite DevTools: including secrets managers and database management tools.
  • Add caching to your Supabase database.
  • Not a fan of the Supabase admin dashboard? Try one of these.
  • Try out a different SMS and email provider.

For the initial launch we've started with a few partners to help us build and test the OAuth functionality.

Cloudflare#

We worked with Cloudflare to build support for databases inside Cloudflare Workers. The Cloudflare integration makes it incredibly easy to connect to your Supabase database directly from the Cloudflare Dashboard.

Check out the latest episode on Cloudflare TV to see it in action.

Resend#

Resend (YC W23) is building the modern email sending platform. If you're using Supabase for Auth, then you'll know already that we handle all your Auth emails. But did you know that the email configuration we provide you is only for testing purposes? When you're going into production, you need to integrate your own email provider. That's where Resend come in. They've built a one-click integration to add Resend as a custom SMTP provider for Supabase.

Read more on Resend's blog.

Snaplet#

Snaplet is a tool for Typescript developers to copy your database, transform sensitive data, and share it with your team without worrying about PII. If you followed our Tuesday launch you'll be familiar with Snaplet - they are one of the best tools for generating seed data for your local development environment. Now they are making it even easier, with their official OAuth App, to spin up production-like development environments for your team.

Learn more on snaplet.dev.

Trigger.dev#

Trigger.dev (YC W23) is the open source Background Jobs framework for Next.js. You can create long-running Jobs directly in your codebase with features like API integrations, webhooks, scheduling and delays. And today you can use their one-click integration to trigger anything from a database change in Supabase.

Learn more about their integration at: trigger.dev/supabase

Vercel#

One that requires no introduction - since so many of you use Vercel, we've dedicated an entire blog post to the upgraded Vercel integration.

Learn more about the Vercel integration updates we're launching today.

Windmill#

Windmill (YC S22) is an open source alternative to Retool and a modern Airflow. They provide a developer platform to quickly build production-grade complex workflows and integrations from minimal Python and Typescript scripts. Their one-click integration with Supabase makes it simple to launch new databases, process large quantities of data (maybe even convert them into embeddings), and build internal dashboards.

Read the official blog post on windmill.dev.

We've released full instructions in our Build with Supabase documentation so that you can build your own Supabase OAuth application for your users. Simply visit your Organization settings and click “Add application” to get started:

The Integrations marketplace is open to everyone. After your submission is complete, you can share the integration with your own users - simply create a button to launch your new app. We've provided some brand assets so that developers can quickly identify the integration on your site.

You don't actually need to build an OAuth Application to build an integration with Supabase. If you're building something for yourself or your team, the Management API is the way to go.

The Trigger.dev team deserve a special shout out. While developing their Integration they also developed supabase-management-js, a Typescript library for the Supabase Management API. This makes it even easier to get started with the Supabase API.

It's useful beyond just integrations. Want to programmatically spin up databases? Easy:


_13

import { SupabaseManagementAPI } from "supabase-management-js";

_13

_13

const client = new SupabaseManagementAPI({

_13

accessToken: "<access token>"

_13

})

_13

_13

const newProject = await client.createProject({

_13

name: 'staging',

_13

db_pass: 'XXX',

_13

organization_id: 'XXX'

_13

plan: 'free',

_13

region: 'us-east-1'

_13

})


Supabase is a collaborative company. We love working with other communities (especially open source ones!), and we'd love to work with you. Get started today: