npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@authowl/expo

v0.3.15

Published

Expo SecureStore adapter and React Native hooks for AuthOwl, the multi-tenant auth SaaS.

Readme

@authowl/expo

Complete SDK guide · React Native reference

Expo adapters for AuthOwl, with keychain-backed session storage and React Native hooks.

npx expo install @authowl/expo expo-secure-store

This package re-exports all of @authowl/react-native and supplies secure session storage, so an Expo app installs one package and passes no storage adapter of its own.

Setup

import {
  AuthOwlProvider,
  expoStorage,
} from '@authowl/expo';

export default function Root() {
  return (
    <AuthOwlProvider
      publishableKey={process.env.EXPO_PUBLIC_AUTHOWL_PUBLISHABLE_KEY!}
      apiUrl={process.env.EXPO_PUBLIC_AUTHOWL_API_URL!}
      storage={expoStorage}
    >
      <App />
    </AuthOwlProvider>
  );
}

expoStorage is backed by expo-secure-store (iOS Keychain / Android Keystore). The session cookie is a bearer credential, so it does not belong in AsyncStorage.

Expo reuses the React Native component themes. Primary controls therefore use AuthOwl gold (#F5B84C) by default; pass a custom AuthOwlTheme to a built-in component when the app intentionally uses another brand color.

Only EXPO_PUBLIC_-prefixed variables reach the app bundle - and only ever the publishable key. A sk_ key is refused at startup rather than shipped inside a binary you cannot rotate out of users' hands.

Social sign-in

import { useSocialSignIn } from '@authowl/expo';

const signInWith = useSocialSignIn();
const result = await signInWith({
  provider: 'google',
  idToken: { token: googleResult.idToken },
});

if (result.error === null) router.replace('/home');

Obtain the ID token with the provider's supported Expo or React Native SDK. The native AuthOwl client does not advertise redirect OAuth because the system browser cannot share its OAuth state cookie with the SDK's secure fetch jar.

Hooks

Everything from @authowl/react-native is re-exported: useAuth, useUser, useSession, useAuthOwlClient, and useSocialSignIn.

const { isLoaded, isSignedIn, user, signOut, has } = useAuth();

has() is advisory - for hiding UI the user cannot use. The real boundary is server-side, over a verified token.

License

MIT