0.11.5 • Published 6 months ago

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

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

6 months ago

0.11.4

6 months ago

0.11.3

6 months ago

0.11.2

6 months ago

0.11.1

6 months ago

0.11.0

6 months ago

0.10.15

6 months ago

0.10.14

7 months ago

0.10.13

7 months ago

0.10.12

7 months ago

0.10.11

7 months ago

0.10.10

7 months ago

0.10.9

7 months ago

0.10.8

7 months ago

0.10.7

7 months ago

0.10.6

7 months ago

0.10.5

7 months ago

0.10.4

7 months ago

0.10.3

7 months ago

0.10.2

7 months ago

0.10.1

7 months ago

0.10.0

7 months ago

0.9.23

7 months ago

0.9.22

8 months ago

0.9.21

8 months ago

0.9.20

8 months ago

0.9.19

8 months ago

0.9.18

8 months ago

0.9.17

8 months ago

0.9.16

8 months ago

0.9.15

8 months ago

0.9.14

8 months ago

0.9.13

8 months ago

0.9.12

8 months ago

0.9.11

8 months ago

0.9.10

8 months ago

0.9.9

8 months ago

0.9.8

8 months ago

0.9.6

8 months ago

0.9.5

8 months ago

0.9.3

8 months ago

0.9.2

8 months ago

0.9.1

8 months ago

0.9.0

8 months ago

0.8.51

8 months ago

0.8.47

9 months ago

0.8.46

9 months ago

0.8.42

9 months ago

0.8.41

9 months ago