{"id":18146456,"url":"https://github.com/atinux/nuxt-todo-passkeys","last_synced_at":"2026-03-08T00:32:19.477Z","repository":{"id":259041934,"uuid":"865284010","full_name":"atinux/nuxt-todo-passkeys","owner":"atinux","description":"A todo app with passkeys (WebAuthn) authentication with Nuxt.","archived":false,"fork":false,"pushed_at":"2024-10-31T10:41:08.000Z","size":770,"stargazers_count":40,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-08T11:48:14.115Z","etag":null,"topics":["nuxt","nuxthub","passkeys","vue","webauthn"],"latest_commit_sha":null,"homepage":"https://todo-passkeys.nuxt.dev","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/atinux.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,"zenodo":null}},"created_at":"2024-09-30T09:29:39.000Z","updated_at":"2025-04-29T14:27:18.000Z","dependencies_parsed_at":"2025-04-23T16:59:05.631Z","dependency_job_id":null,"html_url":"https://github.com/atinux/nuxt-todo-passkeys","commit_stats":null,"previous_names":["atinux/nuxt-todo-passkeys"],"tags_count":0,"template":true,"template_full_name":"atinux/atidone","purl":"pkg:github/atinux/nuxt-todo-passkeys","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fnuxt-todo-passkeys","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fnuxt-todo-passkeys/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fnuxt-todo-passkeys/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fnuxt-todo-passkeys/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/atinux","download_url":"https://codeload.github.com/atinux/nuxt-todo-passkeys/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/atinux%2Fnuxt-todo-passkeys/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30238871,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-08T00:30:53.000Z","status":"ssl_error","status_checked_at":"2026-03-08T00:30:44.061Z","response_time":53,"last_error":"SSL_read: 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","nuxthub","passkeys","vue","webauthn"],"created_at":"2024-11-01T21:07:48.359Z","updated_at":"2026-03-08T00:32:19.458Z","avatar_url":"https://github.com/atinux.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Manage your Todos using Passkeys\n\nA demonstration using [Nuxt](https://nuxt.com) with server-side rendering on the edge, authentication and database querying using [Cloudflare D1](https://developers.cloudflare.com/d1/).\n\nThis demo is a fork of [atidone](https://github.com/atinux/atidone) but using Passkeys for authentication with [nuxt-auth-utils](https://github.com/atinux/nuxt-auth-utils).\n\n## Features\n\n- [Server-Side Rendering on the Edge](https://nuxt.com/blog/nuxt-on-the-edge)\n- Passkeys authentication backed-in using [nuxt-auth-utils](https://github.com/atinux/nuxt-auth-utils)\n- Leverage [Cloudflare D1](https://developers.cloudflare.com/d1/) as database and [drizzle ORM](https://orm.drizzle.team/) using [`hubDatabase()`](https://hub.nuxt.com/docs/storage/database)\n- User interface made with [Nuxt UI](https://ui.nuxt.com)\n- Embed [Drizzle Studio](https://orm.drizzle.team/drizzle-studio/overview/) in the [Nuxt DevTools](https://devtools.nuxt.com)\n\n## Live demo\n\nhttps://todo-passkeys.nuxt.dev\n\n## Setup\n\nMake sure to install the dependencies using [pnpm](https://pnpm.io/):\n\n```bash\npnpm i\n```\n\nTo create sealed sessions, you also need to add `NUXT_SESSION_PASSWORD` in the `.env` with at least 32 characters:\n\n```bash\nNUXT_SESSION_PASSWORD=\"your-super-long-secret-for-session-encryption\"\n```\n\nIf you don't specify it, one will be generated for you.\n\n## Development\n\nStart the development server on http://localhost:3000\n\n```bash\nnpm run dev\n```\n\nIn the Nuxt DevTools, you can see your tables by clicking on the Hub Database tab:\n\nhttps://github.com/atinux/atidone/assets/904724/7ece3f10-aa6f-43d8-a941-7ca549bc208b\n\n## Deploy\n\nYou can deploy this project on your Cloudflare account for free and with zero configuration using [NuxtHub](https://hub.nuxt.com).\n\n```bash\nnpx nuxthub deploy\n```\n\nIt's also possible to leverage Cloudflare Pages CI for deploying, learn more about the different options on https://hub.nuxt.com/docs/getting-started/deploy\n\n## Remote Storage\n\nOnce you deployed your project, you can connect to your remote database locally running:\n  \n```bash\npnpm dev --remote\n```\n\nLearn more about remote storage on https://hub.nuxt.com/docs/getting-started/remote-storage\n\n## License\n\n[MIT License](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatinux%2Fnuxt-todo-passkeys","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fatinux%2Fnuxt-todo-passkeys","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fatinux%2Fnuxt-todo-passkeys/lists"}