{"id":14968849,"url":"https://github.com/supabase-community/nuxt-supabase","last_synced_at":"2026-04-02T18:49:01.108Z","repository":{"id":40330486,"uuid":"344983484","full_name":"supabase-community/nuxt-supabase","owner":"supabase-community","description":"A supa simple wrapper around Supabase.js to enable usage within Nuxt.","archived":false,"fork":false,"pushed_at":"2023-03-16T12:15:42.000Z","size":328,"stargazers_count":174,"open_issues_count":7,"forks_count":17,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-10-25T22:46:46.043Z","etag":null,"topics":["nuxt","supabase","vue"],"latest_commit_sha":null,"homepage":"https://supabase.io","language":"TypeScript","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/supabase-community.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-03-06T02:07:01.000Z","updated_at":"2025-10-01T02:19:16.000Z","dependencies_parsed_at":"2024-06-21T13:12:09.880Z","dependency_job_id":null,"html_url":"https://github.com/supabase-community/nuxt-supabase","commit_stats":{"total_commits":79,"total_committers":7,"mean_commits":"11.285714285714286","dds":0.5696202531645569,"last_synced_commit":"068ec07a603602a074cb9872817a51be69a14b70"},"previous_names":["scottrobertson/nuxt-supabase"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/supabase-community/nuxt-supabase","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fnuxt-supabase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fnuxt-supabase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fnuxt-supabase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fnuxt-supabase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/supabase-community","download_url":"https://codeload.github.com/supabase-community/nuxt-supabase/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/supabase-community%2Fnuxt-supabase/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31313403,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["nuxt","supabase","vue"],"created_at":"2024-09-24T13:40:42.098Z","updated_at":"2026-04-02T18:49:01.067Z","avatar_url":"https://github.com/supabase-community.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Nuxt 3 + Supabase\n\n- **Changelog**: https://github.com/nuxt-community/supabase-module/blob/main/CHANGELOG.md\n- **Docs**: https://supabase.nuxtjs.org\n- **Video**: https://www.youtube.com/watch?v=jIyiRT6zT8Q\n- **GitHub**: https://github.com/nuxt-modules/supabase\n- **Demo**: https://github.com/nuxt-modules/supabase/tree/main/demo#readme\n\n# Nuxt 2 + Supabase\n\nA supa simple wrapper around Supabase.js to enable usage within Nuxt.\n\nThis package uses [vue-supabase](https://github.com/supabase/vue-supabase).\n\n## Install\n\n```bash\nyarn add nuxt-supabase\n```\n\n## Configure\n\nAdd the following to your nuxt.config.js file.\n\n```js\nmodules: [\n  ['nuxt-supabase', {\n    supabaseUrl: 'YOUR_SUPABASE_URL',\n    supabaseKey: 'YOUR_SUPABASE_KEY'\n  }]\n],\n```\n### TypeScript\nAdd the package to your tsconfig.json to make typescript aware of the additional types to the the nuxt context\n```json\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"@nuxt/types\",\n      \"nuxt-supabase\"\n    ]\n  }\n}\n```\n\n## Usage\n\nYou can then use supabase within your Nuxt context, or Vue components.\n\n```vue\n\u003cscript\u003e\nexport default {\n  async asyncData({ $supabase }) {\n    return {\n      events: await $supabase.from(\"events\").select(\"*\");\n    }\n  }\n}\n\u003c/script\u003e\n```\n```vue\n\u003cscript\u003e\nexport default {\n  data() {\n    return {\n      events: null,\n    };\n  },\n  methods: {\n    async getEvents() {\n      this.events = await this.$supabase.from(\"events\").select(\"*\");\n    },\n  },\n};\n\u003c/script\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsupabase-community%2Fnuxt-supabase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsupabase-community%2Fnuxt-supabase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsupabase-community%2Fnuxt-supabase/lists"}