🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@api-buddy/supabase

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@api-buddy/supabase

Supabase client and utilities for API Buddy

2.0.0
latest
Source
npm
Version published
Weekly downloads
38
-73.43%
Maintainers
1
Weekly downloads
 
Created
Source

@api-buddy/supabase

A Supabase client wrapper for API Buddy that simplifies database and authentication interactions with Supabase.

Installation

pnpm add @api-buddy/supabase @supabase/supabase-js

Usage

import { SupabaseService } from '@api-buddy/supabase';

// Initialize with your Supabase URL and key
const supabase = new SupabaseService({
  supabaseUrl: 'your-supabase-url',
  supabaseKey: 'your-supabase-key',
});

// Use for database queries
const { data, error } = await supabase
  .from('table')
  .select('*');

// Use for authentication
const { user, session } = await supabase.auth.signIn({
  email: 'user@example.com',
  password: 'password',
});

Features

  • Type-safe database operations
  • Built-in error handling
  • Authentication helpers
  • Real-time subscriptions

Configuration

Extends SupabaseClient constructor options with additional configuration.

License

MIT

Keywords

supabase

FAQs

Package last updated on 16 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts