{"id":14973121,"url":"https://github.com/react-appwrite/react-appwrite","last_synced_at":"2025-03-29T04:31:43.505Z","repository":{"id":114994738,"uuid":"437606536","full_name":"react-appwrite/react-appwrite","owner":"react-appwrite","description":"⚛️ Gorgeous library for integrating React with Appwrite.","archived":false,"fork":false,"pushed_at":"2023-07-10T10:39:16.000Z","size":741,"stargazers_count":38,"open_issues_count":8,"forks_count":6,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-28T20:09:28.593Z","etag":null,"topics":["appwrite","firebase","hooks","react","typescript"],"latest_commit_sha":null,"homepage":"https://www.npmjs.com/package/react-appwrite","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/react-appwrite.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-12-12T17:07:37.000Z","updated_at":"2025-03-21T23:34:16.000Z","dependencies_parsed_at":null,"dependency_job_id":"11c5dc6e-e56a-4962-9ee5-8a5d5c72f574","html_url":"https://github.com/react-appwrite/react-appwrite","commit_stats":{"total_commits":70,"total_committers":5,"mean_commits":14.0,"dds":0.3142857142857143,"last_synced_commit":"8f6b7284bc3152d98b9b2320792d88fba79542ec"},"previous_names":["sanny-io/react-appwrite-hooks"],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-appwrite%2Freact-appwrite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-appwrite%2Freact-appwrite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-appwrite%2Freact-appwrite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/react-appwrite%2Freact-appwrite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/react-appwrite","download_url":"https://codeload.github.com/react-appwrite/react-appwrite/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246093168,"owners_count":20722400,"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":["appwrite","firebase","hooks","react","typescript"],"created_at":"2024-09-24T13:48:09.519Z","updated_at":"2025-03-29T04:31:42.389Z","avatar_url":"https://github.com/react-appwrite.png","language":"TypeScript","readme":"\u003cdiv\n  align=\"center\"\n\u003e\n  \u003cimg\n    alt=\"React logo\"\n    width=\"100\"\n    src=\"docs/logos/react.svg\"\n  /\u003e\n\n  \u003cimg\n    alt=\"Appwrite logo\"\n    width=\"300\"\n    src=\"docs/logos/appwrite.svg\"\n  /\u003e\n\n  \u003cp\u003e\n    Gorgeous library for integrating React with Appwrite.\n  \u003c/p\u003e\n\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"https://www.npmjs.com/package/react-appwrite\" alt=\"Latest npm version\"\u003e\n        \u003cimg alt=\"Latest npm version\" src=\"https://img.shields.io/npm/v/react-appwrite?color=blue\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/react-appwrite/react-appwrite/blob/main/LICENSE\" alt=\"MIT license\"\u003e\n        \u003cimg alt=\"MIT license\" src=\"https://img.shields.io/github/license/react-appwrite/react-appwrite?color=success\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/react-appwrite/react-appwrite/issues\" alt=\"GitHub issues\"\u003e\n        \u003cimg alt=\"GitHub issues\" src=\"https://img.shields.io/github/issues/react-appwrite/react-appwrite\" /\u003e\n        \u003c/a\u003e\n\u003c/p\u003e\n\u003c/div\u003e\n\n---\n\n## Features\n\n✅ Realtime updates for everything\n\n✅ Next.js middleware support\n\n✅ React Server Components (RSC) support\n\n✅ Optimized for performance with minimal re-renders\n\n✅ Incredibly simple API\n\n✅ Fully typed, written 100% in TypeScript\n\n✅ Eventual feature parity with the Appwrite SDK\n\n## Supported Services\n\nThis library is a work in progress. The intent is to eventually reach 100% feature parity with Appwrite.\n\n- [Account](/src/account)\n- [Avatars](/src/avatars)\n- [Databases](/src/databases)\n- [Functions](/src/functions)\n- [Locale](/src/locale)\n- [Next.js](/src/next)\n- [Storage](/src/storage)\n- [Teams](/src/teams)\n\n### Table of Contents\n\n- [Installation](#installation)\n- [Configuration](#configuration)\n- [Contributing](#contributing)\n- [License](#license)\n\n### Installation\n\n```\nnpm i react-appwrite appwrite\n```\n\n### Configuration\n\n```tsx\nimport { Client } from 'appwrite'\nimport { AppwriteProvider } from 'react-appwrite'\n\nconst appwrite = new Client()\n  .setEndpoint('https://my-appwrite-url.com')\n  .setProject('myAppwriteProjectId')\n\nfunction App() {\n  return (\n    \u003cAppwriteProvider\n      client={appwrite}\n    \u003e\n      {\n        // ...\n      }\n    \u003c/AppwriteProvider\u003e\n  )\n}\n```\n\nThis library is powered by [react-query](https://tanstack.com/query/v4/docs/react/reference/useQuery).\nHooks follow this format.\n\n```typescript\nconst { data, isLoading } = useHook(...)\n```\n\n### Contributing\n\n\u003e **Note**\n\u003e We're looking for maintainers! [Leave a comment](https://github.com/react-appwrite/react-appwrite/discussions/1) if you'd like to help out.\n\nFollow these steps to get started with local development.\n\n1. Clone the repository.\n\n```\ngit clone https://github.com/react-appwrite/react-appwrite.git\ncd react-appwrite\n```\n\n2. Install dependencies.\n\n```\nnpm i\n```\n\n3. Execute the development script.\n\n```\nnpm run dev\n```\n\nFollow these extra steps if you'd like to test with the provided example\nproject.\n\n1. In another terminal, navigate to the `example` directory.\n\n```\ncd example\n```\n\n2. Create your `.env` file.\n\n```\ncp .env.example .env\n```\n\n3. Replace the environment variables in `.env` with your own.\n\n4. Install dependencies.\n\n```\nnpm i\n```\n\n5. Execute development script.\n\n```\nnpm run dev\n```\n\n### License\n\n[MIT](/LICENSE)\n\n\u003ca href=\"https://vercel.com?utm_source=react-appwrite\u0026utm_campaign=oss\" alt=\"Powered by Vercel\"\u003e\n        \u003cimg alt=\"Vercel logo\" src=\"docs/logos/vercel.svg\" /\u003e\n        \u003c/a\u003e","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freact-appwrite%2Freact-appwrite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freact-appwrite%2Freact-appwrite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freact-appwrite%2Freact-appwrite/lists"}