Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nativescript/supabase
⚡️ Supabase for NativeScript: Start your project with a Postgres database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings.
https://github.com/nativescript/supabase
android ios kotlin nativescript supabase swift typescript visionos
Last synced: about 16 hours ago
JSON representation
⚡️ Supabase for NativeScript: Start your project with a Postgres database, Authentication, instant APIs, Edge Functions, Realtime subscriptions, Storage, and Vector embeddings.
- Host: GitHub
- URL: https://github.com/nativescript/supabase
- Owner: NativeScript
- License: apache-2.0
- Created: 2025-02-08T18:19:05.000Z (2 days ago)
- Default Branch: main
- Last Pushed: 2025-02-09T20:07:25.000Z (1 day ago)
- Last Synced: 2025-02-09T20:16:05.506Z (1 day ago)
- Topics: android, ios, kotlin, nativescript, supabase, swift, typescript, visionos
- Language: TypeScript
- Homepage: https://supabase.com
- Size: 32.9 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
- [@nativescript/supabase](packages/supabase/README.md)
- [@nativescript/supabase-functions](packages/supabase-functions/README.md)
- [@nativescript/supabase-gotrue](packages/supabase-gotrue/README.md)
- [@nativescript/supabase-postgrest](packages/supabase-postgrest/README.md)
- [@nativescript/supabase-realtime](packages/supabase-realtime/README.md)
- [@nativescript/supabase-storage](packages/supabase-storage/README.md)# How to use?
This workspace manages the suite of plugins listed above, tap each above for details.
## Prerequisites for Contributing
- Node 20+ is recommended
- [yarn v1](https://classic.yarnpkg.com/lang/en/docs/install/#mac-stable) is used for dependency hoisting.In general, when in doubt with what to do, just `npm start`.
## How to add a new package to workspace?
```
npm run add
```At the prompt, enter the name of the new package.
- This adds a plugin harness in `packages` with the necessary boilerplate to just start developing
- Updates all demo app flavors to support demoing the new package
- Adds shared code in `tools/demo` where you can write demo code **once** and share across all demo flavors
- Updates build tooling to support the new package
- Updates the `npm start` interactive display
- Updates the README here to list the new package## How to focus on just 1 package to develop in isolation
```
npm start
```- Choose the focus commands for the package you wish to focus on and hit enter.
- All the demo app's will be updated to isolate that 1 package and for supported IDE's (currently VS Code), the source code will also become isolated in the workspace.Note: *good to always clean the demo you plan to run after focusing. (You can clean any demo from `npm start` as well)*
Made with ❤️