Supabase Edge Runtime: Self-Hosted Deno Functions
31–40 of 105 posts
Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#32Earlier quoted context omitted.
HIPAA support this week? :)
We got SOC2 Type 2 last week, HIPAA is next. We won't do much of an announcement about SOC2, so you can consider this comment the "official announcement" :)
Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#33Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#34Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#35hey hn, supabase ceo here This is a webserver for Deno. It is MIT licensed, written in Rust, and based on the latest Deno Runtime (1.32+). It can serve TypeScript, JavaScript, and WASM functions. This one is important for local development and self-hosting. For local development, it ensures there is parity between development and production. For self-hosting, it means you can deploy and manage your Deno Functions on…
I've been dabbling with deno for a couple years now, one of the most powerful features I'm excited about is BroadcastChannel[1] support, which works with --unstable in Deno Deploy.
One of the challenges I've run into is debugging timeouts in deno deploy, so I'm curious--
1. is BroadcastChannel supported in supabase self-hosted edge functions? 2. is there more tooling available to supabase edge functions to debug than currently in deno deploy?
[1]: https://deno.com/deploy/docs/runtime-broadcast-channel
--- if curious of specifics, this is my work in progress proof of concept, exploring using pathnames for channels, to get anyone on the same url path connected across regions through sockets and broadcast channel: https://github.com/tylerchilds/kickstart/blob/869506c9dae1e1...
Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#36Do you have feature parity with Firebase. The main thing I love is getting auth up and running. The Flutter integration is also top notch.
I haven't used Flutter, but it looks like Supabase has a flutter library and documentation on how to use it: https://supabase.com/docs/guides/getting-started/tutorials/w...
I used Firebase for a long time, and Supabase more recently. I have no desire to go back to Firebase. No longer having to obsess over read/write count (like you do with Firestore), and being able to leverage full SQL when needed, is a game changer.
Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#37does any one have good practical experience running Supabase locally? Its against their business model to have this run well so I'm a bit scared of the growing lock-in. (P.S. if Supabase is listening some customers like myself would be willing to pay a significant amount for support in a kubernetes/docker deployment running on our servers. We currently pay $50k - $100k simply for enterprise support contracts for each…
I work at an agency, and the dev teams run supabase locally. We use Prisma for migrations and maintaining our SQL functions and storage configurations. `supabase stop --backup` is our friend.
Not being able to run multiple edge functions at a time kept us leaning into Cloud Run and Cloudflare. I'm excited about today's announcement.
Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#38hey hn, supabase ceo here This is a webserver for Deno. It is MIT licensed, written in Rust, and based on the latest Deno Runtime (1.32+). It can serve TypeScript, JavaScript, and WASM functions. This one is important for local development and self-hosting. For local development, it ensures there is parity between development and production. For self-hosting, it means you can deploy and manage your Deno Functions on…
Is Supabase targeted towards webdev "apps" or mobile "apps"? As a mobile dev I got excited to check out a Firebase + serverless alternative, but the docs seem very targeted towards webdevs and non-native apps. I see there's a 1.0 Swift library that's available, would love if someone can chime in with their experience using that in an iOS app.
Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#39Re: Supabase Edge Runtime: Self-Hosted Deno Functions
#40hey hn, supabase ceo here This is a webserver for Deno. It is MIT licensed, written in Rust, and based on the latest Deno Runtime (1.32+). It can serve TypeScript, JavaScript, and WASM functions. This one is important for local development and self-hosting. For local development, it ensures there is parity between development and production. For self-hosting, it means you can deploy and manage your Deno Functions on…