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

fast-expo-app

v3.3.0

Published

⚡ Fast & modern CLI to create production-ready Expo apps with TypeScript, NativeWind v4, Unistyles v3, MMKV, and more

Readme

fast-expo-app

npm version npm downloads License: MIT

⚡ Lightning-fast CLI to create production-ready React Native apps with modern best practices


🚀 Quick Start

Create a new React Native app in seconds:

# Using Bun (recommended)
bunx fast-expo-app@latest

# Or using npm
npx fast-expo-app@latest

The CLI will guide you through:

  1. 📝 Project name
  2. 🎨 Styling choice (NativeWind or Unistyles)
  3. 🔧 Optional modules (React Query, Zustand, Jest, etc.)

Then just:

cd your-project-name
bun install  # or npm install
bun start    # or npm start

✨ What's Included

🎯 Core Stack (Always Included)

  • Expo SDK 54 - Latest Expo with New Architecture
  • ⚛️ React Native 0.81 - Modern React Native with Fabric
  • 🔥 TypeScript 5.9 - Strict type-safety
  • 📁 Expo Router v6 - File-based routing with typed routes
  • 💾 MMKV v4 - Ultra-fast storage (~30x faster than AsyncStorage)
  • 📱 Edge-to-edge - Modern display support
  • 🎭 Animations - React Native Reanimated + Worklets

🎨 Styling Options (Choose One)

NativeWind v4 🌊

  • Tailwind CSS for React Native
  • Dark mode with MMKV persistence
  • Utility-first approach
  • Centralized color system

Unistyles v3 💎

  • Type-safe styling
  • 3-theme system (light/dark/premium)
  • Runtime theme switching with MMKV persistence
  • Breakpoints support
  • Better performance

🔧 Optional Modules

Pick what you need:

  • 🌐 TanStack Query v5 - Data fetching with MMKV persistence
  • 🔄 Zustand - State management with MMKV storage
  • 🛠️ expo-dev-client - Enhanced debugging
  • 🧪 Jest - Unit testing

🎁 Pre-configured

  • 🌓 Theme System with MMKV persistence
  • 🎯 Absolute Imports (@/ prefix)
  • 📏 ESLint + Prettier
  • 🔐 New Architecture enabled
  • 📱 SafeArea handling
  • ⌨️ Keyboard management
  • 🎉 Haptic feedback

📖 Generated Project Structure

your-app/
├── app/                      # Expo Router screens
│   ├── (tabs)/              # Tab navigation
│   │   ├── index.tsx        # Home screen
│   │   └── settings.tsx     # Settings screen
│   ├── _layout.tsx          # Root layout
│   └── modal.tsx            # Modal example
├── components/              # React components
│   ├── container.tsx        # Container component
│   ├── theme-toggle.tsx     # Theme toggle
│   └── external-link.tsx    # External link
├── lib/                     # Core utilities
│   ├── mmkvStorage.ts       # MMKV storage
│   ├── query-client.ts      # React Query (optional)
│   └── zustand.ts           # Zustand store (optional)
├── providers/               # React providers
│   └── query-provider.tsx   # React Query provider
├── constants/               # Constants
│   └── themes.ts            # Theme configs (Unistyles)
├── utils/                   # Utilities
│   └── colors.ts            # Color utilities (NativeWind)
├── assets/                  # Images, fonts
├── android/                 # Android native
├── ios/                     # iOS native
└── __tests__/               # Jest tests (optional)

🎨 Styling Examples

NativeWind

import { View, Text } from 'react-native';

export default function Screen() {
  return (
    <View className="flex-1 items-center justify-center bg-white dark:bg-black">
      <Text className="text-xl font-bold text-black dark:text-white">Hello NativeWind!</Text>
    </View>
  );
}

Unistyles

import { View, Text } from 'react-native';
import { StyleSheet } from 'react-native-unistyles';

export default function Screen() {
  return (
    <View style={styles.container}>
      <Text style={styles.title}>Hello Unistyles!</Text>
    </View>
  );
}

const styles = StyleSheet.create((theme) => ({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
    backgroundColor: theme.colors.background,
  },
  title: {
    fontSize: 20,
    fontWeight: 'bold',
    color: theme.colors.foreground,
  },
}));

🔧 Available Scripts

# Development
bun start              # Start Expo dev server
bun run ios            # Run on iOS simulator
bun run android        # Run on Android emulator
bun run web            # Run on web

# With dev client
bun run dev            # Start with expo-dev-client

# Testing & Quality
bun test               # Run Jest tests
bun run lint           # Lint code
bun run format         # Format code with Prettier

# Cleanup
bun run clean          # Clear cache and restart

🌟 Features Comparison

| Feature | NativeWind | Unistyles | | -------------------- | --------------------------- | ---------------------- | | Styling Approach | Utility classes | StyleSheet API | | Type Safety | ⚠️ Limited | ✅ Full | | Themes | 2 (light/dark) | 3 (light/dark/premium) | | Performance | ✅ Good | ✅ Excellent | | Learning Curve | Easy (if you know Tailwind) | Medium | | Bundle Size | Larger | Smaller | | Breakpoints | ✅ Yes | ✅ Yes | | Runtime Theming | ✅ Yes | ✅ Yes |


📚 Documentation


🤝 Contributing

Contributions are welcome! Please check out our Contributing Guide.


📝 License

MIT © Teczer


🙏 Credits

Built with:


Made with ♥ by Teczer

⭐ Star on GitHub🐛 Report Bug💡 Request Feature