Server side validation

This page summarizes the projects mentioned and recommended in the original post on /r/Supabase

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
  • SupaScript

  • I also wrote this library, which makes things even more node/deno like: https://github.com/burggraf/supascript

  • esm.sh

    A fast, smart, & global CDN for modern(es2015+) web development.

  • import { createClient } from 'https://esm.sh/@supabase/supabase-js@2' // Create client for interacting with your database const supabase = createClient( 'https://xyzcompany.supabase.co', 'SERVICE ROLE KEY' <<<----- the important part ) serve(async (req) => { // do validation here if(invalid) { return errorResponse } if(valid) { supabase.from('myTable').update({ name: 'My new Name' }) return successResponse } })

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • supabase

    The open source Firebase alternative.

  • You can write vanilla JS in *.ts files just fine. You don't need to use types. If you check this: https://github.com/supabase/supabase/blob/master/examples/edge-functions/supabase/functions/select-from-table-with-auth-rls/index.ts

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts