Postgrest Js

Isomorphic JavaScript client for PostgREST.
Alternatives To Postgrest Js
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Postgrest Js819509 days ago107November 22, 202398mitTypeScript
Isomorphic JavaScript client for PostgREST.
Redux Api49861103 years ago71February 25, 202031mitJavaScript
Flux REST API for redux infrastructure
Fetch Plus11633143 years ago20November 21, 201630otherJavaScript
🐕 Fetch+ is a convenient Fetch API replacement with first-class middleware support.
Ng2 Rest266605 days ago304May 01, 2023TypeScript
Isomorphic, simple, robust REST API library for Browser and NodeJS, ( ts / js ) apps
Alterior10183 months ago46February 16, 20228mitTypeScript
Build HTTP services with this; a Typescript REST framework based on Express using decorators and Angular style dependency injection
Ms Rest Azure Js9371796 months ago22February 02, 20212mitTypeScript
Azure runtime for isomorphic javascript libraries generated by Autorest
Client9172110 days ago34March 10, 20216mitJavaScript
Isomorphic JS client for E-Com Plus REST APIs
Documentation3
2 days ago1
Alternatives To Postgrest Js
Select To Compare


Alternative Project Comparisons
Readme

postgrest-js

Build Package License: MIT

Isomorphic JavaScript client for PostgREST. The goal of this library is to make an "ORM-like" restful interface.

Full documentation can be found here.

Quick start

Install

npm install @supabase/postgrest-js

Usage

import { PostgrestClient } from '@supabase/postgrest-js'

const REST_URL = 'http://localhost:3000'
const postgrest = new PostgrestClient(REST_URL)

Custom fetch implementation

postgrest-js uses the cross-fetch library to make HTTP requests, but an alternative fetch implementation can be provided as an option. This is most useful in environments where cross-fetch is not compatible, for instance Cloudflare Workers:

import { PostgrestClient } from '@supabase/postgrest-js'

const REST_URL = 'http://localhost:3000'
const postgrest = new PostgrestClient(REST_URL, {
  fetch: (...args) => fetch(...args),
})

License

This repo is licensed under MIT License.

Sponsors

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.

New Sponsor

Popular Isomorphic Projects
Popular Rest Projects
Popular Frameworks Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Js
Typescript
Restful
Orm
Isomorphic
Javascript Client