{"id":14968923,"url":"https://github.com/wa1aric/supabase-js-rs","last_synced_at":"2025-10-26T06:30:45.699Z","repository":{"id":64932693,"uuid":"579711492","full_name":"wa1aric/supabase-js-rs","owner":"wa1aric","description":"Rust bindings for Supabase JavaScript library via WebAssembly","archived":false,"fork":false,"pushed_at":"2024-04-25T09:15:44.000Z","size":52,"stargazers_count":24,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-30T03:48:14.320Z","etag":null,"topics":["hackathon","supabase-js","wasm-bindgen"],"latest_commit_sha":null,"homepage":"https://sycamore-supabase-js-rs-auth-demo.netlify.app","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wa1aric.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-12-18T16:30:45.000Z","updated_at":"2024-08-28T12:48:12.000Z","dependencies_parsed_at":"2024-08-23T15:37:54.470Z","dependency_job_id":null,"html_url":"https://github.com/wa1aric/supabase-js-rs","commit_stats":{"total_commits":54,"total_committers":3,"mean_commits":18.0,"dds":0.05555555555555558,"last_synced_commit":"85124992a2f6e1d50b633cdf614ce0eebdff0162"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wa1aric%2Fsupabase-js-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wa1aric%2Fsupabase-js-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wa1aric%2Fsupabase-js-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wa1aric%2Fsupabase-js-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wa1aric","download_url":"https://codeload.github.com/wa1aric/supabase-js-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238275859,"owners_count":19445298,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hackathon","supabase-js","wasm-bindgen"],"created_at":"2024-09-24T13:40:49.360Z","updated_at":"2025-10-26T06:30:45.348Z","avatar_url":"https://github.com/wa1aric.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# supabase-js-rs\n\nRust bindings for [Supabase](https://supabase.com/) JavaScript library via WebAssembly.\n\n![Supabase Wasm](https://repository-images.githubusercontent.com/579711492/4e814ba5-3ea3-4678-906b-6595f7972928)\n\n## Usage\n\nAdd `supabase-js-rs` to Cargo.toml\n\n```\nsupabase-js-rs = { version = \"0.1.2\" }\nwasm-bindgen = \"0.2.83\"\n```\nor using a git dependency\n```\nsupabase-js-rs = { git = \"https://github.com/wa1aric/supabase-js-rs\", rev = \"ada414750f6e5baa2f4729304c53aed3b2d9515e\" }\nwasm-bindgen = \"0.2.83\"\n```\n\nInstall `@supabase/supabase-js` as package by adding CDN link to index.html in the root of your crate\n\n```\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2\"\u003e\u003c/script\u003e\n```\n\nBuild and run\n\n```\ntrunk serve\n```\n\n## Examples\n\n- [x] [Sycamore Auth](https://github.com/wa1aric/supabase-js-rs/tree/master/examples/sycamore-auth)\n- [x] [Sycamore Guestbook](https://github.com/wa1aric/supabase-js-rs/tree/master/examples/sycamore-guestbook)\n- [x] [Sycamore Realtime](https://github.com/wa1aric/supabase-js-rs/tree/master/examples/sycamore-realtime-chat)\n- [ ] Perseus\n- [x] [Yew Auth](https://github.com/wa1aric/supabase-js-rs/tree/master/examples/yew-supabase-auth)\n- [ ] Seed\n- [x] [Leptos OAuth](https://github.com/wa1aric/supabase-js-rs/tree/master/examples/leptos-oauth)\n- [ ] MoonZoon\n\n## What I've done so far\n\n- [ ] Auth\n  - [x] Create a new user\n  - [x] Sign in a user\n  - [x] Sign in a user through OTP\n  - [x] Sign in a user through OAuth\n  - [x] Sign out a user\n  - [ ] Verify and log in through OTP\n  - [x] Retrieve a session\n  - [x] Retrieve a new session\n  - [x] Retrieve a user\n  - [x] Update a user\n  - [X] Set the session data\n  - [x] Listen to auth events\n  - [x] Send a password reset request\n  - [ ] Enroll a factor\n  - [ ] Create a challenge\n  - [ ] Verify a challenge\n  - [ ] Create and verify a challenge\n  - [ ] Unenroll a factor\n  - [ ] Get Authenticator Assurance Level\n  - [x] Anonymous sign in\n- [ ] Database\n  - [x] Fetch data\n  - [x] Insert data\n  - [x] Update data\n  - [x] Upsert data\n  - [x] Delete data\n  - [ ] Call a Postgres function\n  - [x] Using filters\n  - [x] Using Modifiers\n- [ ] Functions\n- [x] Realtime\n- [ ] Storage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwa1aric%2Fsupabase-js-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwa1aric%2Fsupabase-js-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwa1aric%2Fsupabase-js-rs/lists"}