mirror of
https://github.com/supabase/supabase.git
synced 2026-06-24 09:55:17 +08:00
38 lines
729 B
Plaintext
38 lines
729 B
Plaintext
---
|
|
id: installing
|
|
title: 'Installing'
|
|
slug: installing
|
|
custom_edit_url: https://github.com/supabase/supabase/edit/master/spec/supabase_js_v1.yml
|
|
---
|
|
|
|
import Tabs from '@theme/Tabs'
|
|
import TabItem from '@theme/TabItem'
|
|
|
|
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@1"></script>
|
|
//or
|
|
<script src="https://unpkg.com/@supabase/supabase-js@1"></script>
|
|
```
|