react-appwrite
TypeScript icon, indicating that this package has built-in type declarations

0.4.3 • Public • Published
React logo

Appwrite logo

Gorgeous library for integrating React with Appwrite.

Latest npm version MIT license GitHub issues


Features

Realtime updates for everything

Next.js middleware support

React Server Components (RSC) support

Optimized for performance with minimal re-renders

Incredibly simple API

Fully typed, written 100% in TypeScript

Eventual feature parity with the Appwrite SDK

Supported Services

This library is a work in progress. The intent is to eventually reach 100% feature parity with Appwrite.

Table of Contents

Installation

npm i react-appwrite appwrite

Configuration

import { Client } from 'appwrite'
import { AppwriteProvider } from 'react-appwrite'

const appwrite = new Client()
  .setEndpoint('https://my-appwrite-url.com')
  .setProject('myAppwriteProjectId')

function App() {
  return (
    <AppwriteProvider
      client={appwrite}
    >
      {
        // ...
      }
    </AppwriteProvider>
  )
}

This library is powered by react-query. Hooks follow this format.

const { data, isLoading } = useHook(...)

Contributing

Note We're looking for maintainers! Leave a comment if you'd like to help out.

Follow these steps to get started with local development.

  1. Clone the repository.
git clone https://github.com/react-appwrite/react-appwrite.git
cd react-appwrite
  1. Install dependencies.
npm i
  1. Execute the development script.
npm run dev

Follow these extra steps if you'd like to test with the provided example project.

  1. In another terminal, navigate to the example directory.
cd example
  1. Create your .env file.
cp .env.example .env
  1. Replace the environment variables in .env with your own.

  2. Install dependencies.

npm i
  1. Execute development script.
npm run dev

License

MIT

Vercel logo

Package Sidebar

Install

npm i react-appwrite

Weekly Downloads

20

Version

0.4.3

License

MIT

Unpacked Size

142 kB

Total Files

172

Last publish

Collaborators

  • sanny-io