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

blink-stack-mobile

v1.0.1

Published

Expo SDK 54 mobile template with pluggable auth, subscriptions, notifications, and Sentry.

Readme

Vibing

Vibing is a production-ready mobile application built using Expo (SDK 54) and React Native. It uses a scalable, modern mobile stack featuring robust authentication, subscription management, push notifications, and analytics out-of-the-box.

Features

  • Expo Router: File-based routing with support for typed routes.
  • Authentication: Modular auth integration supporting basic, clerk, supabase, and appwrite.
  • Subscriptions: In-app purchases and subscription flows powered by RevenueCat.
  • State & Data Fetching: Utilizes TanStack Query for robust remote data fetching and caching.
  • Forms & Validation: Built with React Hook Form and Zod.
  • Push Notifications: Integrated with onesignal or novu.
  • Error Tracking & Monitoring: Bootstrapped with Sentry.

Project Structure

The project is structured to separate routing, business logic, and UI components cleanly:

  • /app: Contains all Expo Router screens and route groups.
    • (auth): Onboarding, Login, and Signup screens.
    • (subscription): Screens related to pricing plans and restoring purchases.
    • (app): The protected main application area, visible only to authenticated users with active subscriptions.
  • /src: Houses the core business logic, minimizing logic within screen components.
    • /components: Reusable UI components.
    • /hooks: Custom React hooks, including data-fetching with TanStack Query.
    • /providers: Context providers for global state (e.g., SessionProvider, SubscriptionProvider, NotificationProvider).
    • /config: Configuration files and environmental variable parsing.

Quick Start

1. Install Dependencies

npm install

CLI Usage (npm / bun)

Use the published CLI to scaffold a new project:

npx blink-stack-mobile init my-app
# or
bunx blink-stack-mobile init my-app

Run the wizard in an existing project directory:

npx blink-stack-mobile configure

2. Environment Configuration

Copy the sample environment file to .env.local:

cp .env.example .env.local

Fill out the required variables such as:

  • EXPO_PUBLIC_AUTH_PROVIDER
  • EXPO_PUBLIC_NOTIFICATION_PROVIDER
  • EXPO_PUBLIC_REVENUECAT_API_KEY_IOS
  • EXPO_PUBLIC_REVENUECAT_API_KEY_ANDROID
  • EXPO_PUBLIC_SENTRY_DSN

Alternatively, run the configuration wizard:

npm run configure

3. Run the App

Start the Expo development server on your preferred platform:

npm run ios     # For iOS simulator
npm run android # For Android emulator
npm run web     # For web preview

Note: All start scripts (start, ios, android, web) run lint checks first and will intentionally fail if ESLint reports errors or warnings to maintain code quality.

Quality Gates

Before committing, ensure your code passes the following checks:

  • Linting: npm run lint (Checks for code style and formatting issues)
  • Type Checking: npm run typecheck (Ensures strict TypeScript compliance)

License

MIT