0.4.3 • Published 10 months ago

react-appwrite v0.4.3

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago


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

0.4.3

10 months ago

0.4.2

12 months ago

0.4.1

1 year ago

0.4.0

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago