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

create-gufran-expo-app

v2.0.8

Published

πŸš€ Ultimate Expo React Native Boilerplate - Create production-ready Expo apps instantly with Firebase, Navigation, TypeScript, and more. No git clone needed, works offline!

Readme

create-gufran-expo-app

npm version npm downloads license

A CLI tool to create production-ready Expo React Native apps with Firebase, Navigation, TypeScript, and more. Works offline - no git clone needed!

πŸ“Έ App Screenshots

Features

  • πŸ”₯ Firebase Integration - Authentication, Push Notifications, Analytics
  • πŸ—‚οΈ Clean Architecture - Organized folder structure that scales
  • ☁️ Azure Blob Storage - File uploads with progress tracking
  • πŸ” Authentication Flow - Complete auth screens and navigation
  • πŸ“± Native Features - Camera, Image Picker, Permissions
  • πŸ”” Push Notifications - Notifee and Firebase Messaging
  • 🌐 API Management - TanStack Query configured
  • πŸ“Š State Management - Zustand for efficient state handling
  • 🎯 TypeScript - Full type safety

Quick Start

npx create-gufran-expo-app my-app

Installation

You don't need to install anything globally. Just use npx:

npx create-gufran-expo-app my-app

Or install globally:

npm install -g create-gufran-expo-app
create-gufran-expo-app my-app

Usage

Basic Usage

npx create-gufran-expo-app my-app

With Bundle ID

npx create-gufran-expo-app my-app --bundle-id com.mycompany.myapp

Interactive Mode

npx create-gufran-expo-app
# Will prompt for project name and bundle ID

Options

| Option | Description | |--------|-------------| | -b, --bundle-id <id> | Bundle identifier (e.g., com.myapp) | | --skip-install | Skip automatic dependency installation | | --skip-git | Skip git initialization | | --npm | Use npm instead of yarn | | -h, --help | Display help information | | -V, --version | Display version number |

Project Structure

my-app/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ assets/          # Images, fonts, icons
β”‚   β”œβ”€β”€ components/      # Reusable UI components
β”‚   β”œβ”€β”€ config/          # App configuration
β”‚   β”œβ”€β”€ constants/       # Constants, themes, strings
β”‚   β”œβ”€β”€ contexts/        # React contexts
β”‚   β”œβ”€β”€ hooks/           # Custom React hooks
β”‚   β”œβ”€β”€ navigation/      # Navigation setup
β”‚   β”œβ”€β”€ screens/         # App screens
β”‚   β”œβ”€β”€ services/        # API services
β”‚   β”œβ”€β”€ stores/          # Zustand stores
β”‚   β”œβ”€β”€ types/           # TypeScript types
β”‚   └── utils/           # Utility functions
β”œβ”€β”€ android/             # Android native code
β”œβ”€β”€ ios/                 # iOS native code
β”œβ”€β”€ FirebaseFiles/       # Firebase config samples
└── assets/              # Root assets

After Project Creation

1. Navigate to your project

cd my-app

2. Configure Firebase

Add your Firebase configuration files:

  • Android: Copy google-services.json to android/app/
  • iOS: Copy GoogleService-Info.plist to ios/YourApp/

3. Install iOS dependencies

cd ios && pod install && cd ..

4. Start development

npm start        # Start Metro bundler
npm run android  # Run on Android
npm run ios      # Run on iOS

Tech Stack

| Category | Technologies | |----------|-------------| | Framework | Expo SDK 54, React Native 0.81 | | Language | TypeScript | | Navigation | React Navigation 7 | | State | Zustand, TanStack Query | | Storage | MMKV | | Backend | Firebase, Azure Blob Storage | | Notifications | Notifee, FCM |

Requirements

  • Node.js >= 18.0.0
  • For iOS: Xcode 14+, CocoaPods
  • For Android: Android Studio, JDK 17

License

MIT Β© Gufran Gaury

Links