Gathering detailed insights and metrics for supabase-js-without-realtime-js
Gathering detailed insights and metrics for supabase-js-without-realtime-js
An isomorphic Javascript client for Supabase. Query your Supabase database, subscribe to realtime events, upload and download files, browse typescript examples, invoke postgres functions via rpc, invoke supabase edge functions, query pgvector.
npm install supabase-js-without-realtime-js
Typescript
Module System
Node Version
NPM Version
65.5
Supply Chain
77.6
Quality
75.3
Maintenance
100
Vulnerability
99.6
License
TypeScript (98.41%)
JavaScript (1.59%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
773
Last Day
4
Last Week
5
Last Month
27
Last Year
129
MIT License
3,435 Stars
847 Commits
296 Forks
48 Watchers
13 Branches
128 Contributors
Updated on Feb 16, 2025
Minified
Minified + Gzipped
Latest Version
0.0.2
Package Id
supabase-js-without-realtime-js@0.0.2
Unpacked Size
133.33 kB
Size
28.41 kB
File Count
76
NPM Version
8.10.0
Node Version
18.2.0
Cumulative downloads
Total Downloads
Last Day
0%
4
Compared to previous day
Last Week
400%
5
Compared to previous week
Last Month
107.7%
27
Compared to previous month
Last Year
29%
129
Compared to previous year
supabase-js-without-realtime-js
An isomorphic JavaScript client for Supabase.
First of all, you need to install the library:
1npm install supabase-js-without-realtime-js
Then you're able to import the library and establish the connection with the database:
1import { createClient } from 'supabase-js-without-realtime-js'
2
3// Create a single supabase client for interacting with your database
4const supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key')
fetch
implementationsupabase-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:
1import { createClient } from 'supabase-js-without-realtime-js'
2
3// Provide a custom `fetch` implementation as an option
4const supabase = createClient('https://xyzcompany.supabase.co', 'public-anon-key', {
5 fetch: (...args) => fetch(...args),
6})
No vulnerabilities found.
Reason
all changesets reviewed
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
30 commit(s) and 4 issue activity found in the last 90 days -- score normalized to 10
Reason
license file detected
Details
Reason
3 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-02-10
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More