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

@joelbarron/expo-dev-kit

v0.1.6

Published

[![npm version](https://img.shields.io/npm/v/%40joelbarron%2Fexpo-dev-kit?label=npm&color=cb3837)](https://www.npmjs.com/package/@joelbarron/expo-dev-kit) [![npm downloads](https://img.shields.io/npm/dm/%40joelbarron%2Fexpo-dev-kit?label=downloads)](https

Readme

@joelbarron/expo-dev-kit

npm version npm downloads CI Release

Reusable toolkit for Expo/React Native apps with ready-to-use auth flows, form components, query integration, and app status controls.

What is included

| Module | Purpose | | --- | --- | | auth | API client, secure storage, context/provider, hooks, forms, and auth screens (JB*) | | forms | Reusable input/select/checkbox and related form primitives | | query | React Query setup with centralized unauthorized handling | | core/app-status | Maintenance mode and required update checks | | config, runtime, http, store, services, ui, utils | Shared mobile app building blocks |

Auth flows available

  • Password sign-in
  • OTP sign-in
  • Sign up
  • Forgot password
  • Reset password (uid/token)
  • Account confirmation + resend
  • Sign out
  • Welcome

Installation

npm i @joelbarron/expo-dev-kit

Main peer dependencies:

  • react >= 19
  • react-native >= 0.76
  • expo-router >= 6
  • @tanstack/react-query >= 5
  • react-hook-form >= 7

Quick start

Expo Router auth screen example

Expo Router maps routes from the consumer app app/ directory.
This library gives you screen components; route files still live in the app.

// app/(auth)/sign-in.tsx
import { useRouter } from 'expo-router';
import { JBAuthSignInScreen } from '@joelbarron/expo-dev-kit/auth';

export default function SignInRoute() {
  const router = useRouter();

  return (
    <JBAuthSignInScreen
      navigator={{
        goToSignIn: () => router.replace('/(auth)/sign-in'),
        goToSignUp: () => router.push('/(auth)/sign-up'),
        goToForgotPassword: () => router.push('/(auth)/forgot-password'),
        goToVerifyEmail: ({ email }) =>
          router.push({ pathname: '/(auth)/verify-email', params: email ? { email } : undefined }),
        onSignedIn: () => router.replace('/(app)')
      }}
    />
  );
}

App status (maintenance/update)

import { JBAppStatusProvider, JBAppStatusGate, createAppStatusClient } from '@joelbarron/expo-dev-kit/core';

const appStatusClient = createAppStatusClient({
  baseUrl: 'https://api.example.com/v1',
  endpoint: '/core/configs/mobile/'
});

Local install helpers (for app integration testing)

From this repo:

# Local tarball install into finzenio-app
npm run install:lib:local:finzenio

# Install latest published npm version into finzenio-app
npm run install:lib:npm:finzenio

# Generic
npm run install:lib -- --source local --target /path/to/your/app
npm run install:lib -- --source npm --target /path/to/your/app --tag latest

Release channels

  • latest: stable releases from main
  • next: rc prereleases from next

Check published version and dist-tags:

npm view @joelbarron/expo-dev-kit version dist-tags --json

Docs