- Notifications
You must be signed in to change notification settings - Fork153
Isomorphic JavaScript client for PostgREST.
License
supabase/postgrest-js
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Isomorphic JavaScript client forPostgREST. The goal of this library is to make an "ORM-like" restful interface.
Full documentation can be foundhere.
Install
npm install @supabase/postgrest-js
Usage
import{PostgrestClient}from'@supabase/postgrest-js'constREST_URL='http://localhost:3000'constpostgrest=newPostgrestClient(REST_URL)
- select():https://supabase.com/docs/reference/javascript/select
- insert():https://supabase.com/docs/reference/javascript/insert
- update():https://supabase.com/docs/reference/javascript/update
- delete():https://supabase.com/docs/reference/javascript/delete
postgrest-js
uses thecross-fetch
library to make HTTP requests, but an alternativefetch
implementation can be provided as an option. This is most useful in environments wherecross-fetch
is not compatible, for instance Cloudflare Workers:
import{PostgrestClient}from'@supabase/postgrest-js'constREST_URL='http://localhost:3000'constpostgrest=newPostgrestClient(REST_URL,{fetch:(...args)=>fetch(...args),})
This repo is licensed under MIT License.
We are building the features of Firebase using enterprise-grade, open source products. We support existing communities wherever possible, and if the products don’t exist we build them and open source them ourselves. Thanks to these sponsors who are making the OSS ecosystem better for everyone.
About
Isomorphic JavaScript client for PostgREST.