mirror of
https://github.com/supabase/supabase.git
synced 2026-07-02 03:54:22 +08:00
38 lines
762 B
Plaintext
38 lines
762 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 TabItem from '@theme/TabItem'
|
|
|
|
All JavaScript libraries are built directly by the Supabase team. this is in reference/js/installing
|
|
|
|
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@2"></script>
|
|
//or
|
|
<script src="https://unpkg.com/@supabase/supabase-js@2"></script>
|
|
```
|