0.11.5 • Published 5 months ago

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

Weekly downloads
-
License
MIT
Repository
-
Last release
5 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

5 months ago

0.11.4

5 months ago

0.11.3

5 months ago

0.11.2

5 months ago

0.11.1

5 months ago

0.11.0

5 months ago

0.10.15

5 months ago

0.10.14

5 months ago

0.10.13

6 months ago

0.10.12

6 months ago

0.10.11

6 months ago

0.10.10

6 months ago

0.10.9

6 months ago

0.10.8

6 months ago

0.10.7

6 months ago

0.10.6

6 months ago

0.10.5

6 months ago

0.10.4

6 months ago

0.10.3

6 months ago

0.10.2

6 months ago

0.10.1

6 months ago

0.10.0

6 months ago

0.9.23

6 months ago

0.9.22

6 months ago

0.9.21

6 months ago

0.9.20

7 months ago

0.9.19

7 months ago

0.9.18

7 months ago

0.9.17

7 months ago

0.9.16

7 months ago

0.9.15

7 months ago

0.9.14

7 months ago

0.9.13

7 months ago

0.9.12

7 months ago

0.9.11

7 months ago

0.9.10

7 months ago

0.9.9

7 months ago

0.9.8

7 months ago

0.9.6

7 months ago

0.9.5

7 months ago

0.9.3

7 months ago

0.9.2

7 months ago

0.9.1

7 months ago

0.9.0

7 months ago

0.8.51

7 months ago

0.8.47

8 months ago

0.8.46

8 months ago

0.8.42

8 months ago

0.8.41

8 months ago