supabase-install-auth
Installation
SKILL.md
Supabase Install & Auth
Overview
Install the Supabase SDK, CLI, and project credentials from scratch — covering package install, environment configuration, client initialization, and connection verification for both TypeScript (@supabase/supabase-js) and Python (supabase).
Key facts:
- npm package:
@supabase/supabase-js - Python package:
supabase(via pip) - Client factory:
createClient()— nevernew SupabaseClient() - Dashboard: https://supabase.com/dashboard (Settings > API for keys)
- Docs: https://supabase.com/docs
Prerequisites
- Node.js 18+ (for JS/TS) or Python 3.8+ (for Python)
- Package manager: npm, pnpm, or yarn (JS) / pip (Python)
- A Supabase project created at https://supabase.com/dashboard
- Docker Desktop (only if using local development via
supabase start)
Related skills