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

expo-forge

v2.1.3

Published

Forge modern Expo apps with bulletproof architecture - TanStack Query, Zustand, Axios, NativeWind

Readme

🔥 Expo Forge — Bulletproof Expo Architecture

Test & Lint NPM Version License: MIT

Forge modern Expo apps with battle-tested architecture.
Initialize complete projects and features with TanStack Query, Zustand, Axios, and NativeWind in seconds.


⚡ Quick Start

Zero Install (Recommended)

No setup required. Just run and forge:

npx create-expo-forge-app my-awesome-app

That's it. ✅ Your fully configured Expo project is ready.


Global CLI Install

# Install once
npm install -g expo-forge

# Forge a new project
expo-forge init my-epic-app

# Add features
cd my-epic-app
expo-forge generate feature booking
expo-forge generate feature payment

🛠️ CLI Commands

| Command | Description | | ------------------------------------ | ----------------------------------------------- | | npx create-expo-forge-app <name> | Fastest way to forge a new project | | expo-forge init <name> | Initialize a new project (after global install) | | expo-forge generate feature <name> | Scaffold a complete feature module | | expo-forge --version | Show the current version | | expo-forge --help | Show available commands |


🏛️ What's Inside the Forge?

When you initialize a project, Expo Forge sets up a production-ready environment:

  • 🏗️ Bulletproof Structure — Feature-based architecture (src/features, src/api, src/hooks).
  • 🌐 Pre-configured Axios — API client with interceptors, auth headers, and error handling.
  • 🔄 TanStack Query v5 — Async state with caching, background refetch, and optimistic updates.
  • 🧠 Zustand Stores — Lightweight, predictable global state management.
  • 🎨 NativeWind (Tailwind CSS) — Utility-first styling with global.css pre-configured.
  • 📱 Expo Router — File-based navigation with layouts and type safety.
  • 🛡️ Safe Area ReadySafeAreaProvider integrated for notched/modern devices.
  • 🎯 Environment Ready.env.example & TypeScript path aliases (@/*) configured.

🏗️ Feature Generation

The generate feature command scaffolds a self-contained module:

src/features/booking/
├── api/              # TanStack Query custom hooks (CRUD)
├── components/       # UI components (e.g. BookingCard.tsx)
├── hooks/            # Feature-specific business logic
├── services/         # Pure API calls via Axios
├── store/            # Zustand store for this domain
├── types/            # TypeScript interfaces & DTOs
├── utils/            # Domain-specific helpers
├── BookingScreen.tsx # Main entry screen for this feature
└── index.ts          # Clean public API

Import instantly:

import { BookingScreen, useBookings } from "@/features/booking";

🔧 Technical Stack

| Layer | Technology | | -------------------- | -------------------------------------------------------------------- | | Runtime | Expo + React Native | | Navigation | Expo Router | | Data Fetching | TanStack Query v5 | | State Management | Zustand | | HTTP Client | Axios | | Styling | NativeWind (Tailwind CSS) | | Language | TypeScript (strict) |


📖 Documentation


🤝 Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

📄 License

MIT License — see the LICENSE file for details.


Forged with ❤️ by moasko ⚒️✨