|
|
|
|
|
by Mortiffer
911 days ago
|
|
core element is https://postgrest.org/en/stable/ . I use this in production in large corporate projects on k8s. For a large number of use cases you can put logic into stored procedures SQL. PG can also do JS or Py stored procedures but you get a better developer experience if your logic code is deployed through regular CI/CD containers or functions (we use both extensively together depending on cost trade offs either one.) Supabase suggests you to use their DENO serverless functions which is cool and all but i think most people would rather deploy node functions on cloudflare for webprojects. That being said the target customer group are those that want to have 99% of their logic in JS frontend. Backend just does CRUD and Auth. |
|