0.11.5 • Published 3 months ago

jazz-react-native-auth-clerk v0.11.5

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

jazz-react-native-auth-clerk

This package provides a Clerk-based authentication strategy for Jazz.

Usage

The JazzProviderWithClerk component is a JazzProvider that automatically handles Clerk authentication.

Once authenticated, authentication will persist across page reloads, even if the device is offline.

See the full example app for a complete example.

import { ClerkProvider, useClerk } from "@clerk/clerk-react";
import { JazzProviderWithClerk } from "jazz-react-native-auth-clerk";

const PUBLISHABLE_KEY = import.meta.env.VITE_CLERK_PUBLISHABLE_KEY;

function JazzProvider({ children }: { children: React.ReactNode }) {
  const clerk = useClerk();

  return (
    <JazzProviderWithClerk
      clerk={clerk}
      storage="sqlite"
      sync={{
        peer: "wss://cloud.jazz.tools/?key=chat-rn-clerk-example-jazz@garden.co",
      }}
    >
      {children}
    </JazzProviderWithClerk>
  );
}


export default function App() {
  return (
    <ClerkProvider publishableKey={PUBLISHABLE_KEY} afterSignOutUrl="/">
      <JazzProvider>
        <Slot />
      </JazzProvider>
    </ClerkProvider>
  );
}
0.11.5

3 months ago

0.11.4

3 months ago

0.11.3

3 months ago

0.11.2

3 months ago

0.11.1

3 months ago

0.11.0

3 months ago

0.10.15

3 months ago

0.10.14

3 months ago

0.10.13

4 months ago

0.10.12

4 months ago

0.10.11

4 months ago

0.10.10

4 months ago

0.10.9

4 months ago

0.10.8

4 months ago

0.10.7

4 months ago

0.10.6

4 months ago

0.10.5

4 months ago

0.10.4

4 months ago

0.10.3

4 months ago

0.10.2

4 months ago

0.10.1

4 months ago

0.10.0

4 months ago

0.9.23

4 months ago

0.9.22

4 months ago

0.9.21

4 months ago

0.9.20

5 months ago

0.9.19

5 months ago

0.9.18

5 months ago

0.9.17

5 months ago

0.9.16

5 months ago

0.9.15

5 months ago

0.9.14

5 months ago

0.9.13

5 months ago

0.9.12

5 months ago

0.9.11

5 months ago

0.9.10

5 months ago

0.9.9

5 months ago

0.9.8

5 months ago

0.9.6

5 months ago

0.9.5

5 months ago

0.9.3

5 months ago

0.9.2

5 months ago

0.9.1

5 months ago

0.9.0

5 months ago

0.8.51

5 months ago

0.8.47

6 months ago

0.8.46

6 months ago

0.8.42

6 months ago

0.8.41

6 months ago