mirror of
https://github.com/supabase/supabase.git
synced 2026-05-24 04:00:47 +08:00
42 lines
852 B
Plaintext
42 lines
852 B
Plaintext
---
|
|
id: installing
|
|
title: "Installing"
|
|
slug: installing
|
|
custom_edit_url: https://github.com/supabase/supabase/edit/master/web/spec/supabase.yml
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs';
|
|
import TabsPanel from '@theme/TabsPanel';
|
|
|
|
All JavaScript libraries are built directly by the Supabase team.
|
|
|
|
Other languages are built by the community and supported by Supabase.
|
|
|
|
## JavaScript
|
|
|
|
Via NPM
|
|
```bash
|
|
npm install @supabase/supabase-js
|
|
```
|
|
|
|
Via Yarn
|
|
```bash
|
|
yarn add @supabase/supabase-js
|
|
```
|
|
|
|
Find the source code on [GitHub](https://github.com/supabase/supabase-js).
|
|
|
|
Or via CDN
|
|
```js
|
|
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js"></script>
|
|
//or
|
|
<script src="https://unpkg.com/@supabase/supabase-js"></script>
|
|
```
|
|
|
|
## Python
|
|
|
|
```bash
|
|
pip install supabase-py
|
|
```
|
|
|
|
Find the source code on [GitHub](https://github.com/supabase/supabase-py). |