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

@reuvenorg/react-native-boilerplate-ultimate

v0.0.5

Published

A powerful CLI tool for creating React Native projects with modular architecture. Generate, manage, and scaffold React Native applications with pre-built modules and best practices.

Readme

React Native Boilerplate

expo react react-native

A comprehensive CLI tool for creating and managing React Native projects with modular architecture and best practices.

Features

  • Use Expo's pre-built native modules without ejecting
  • Maintain full control over native code when needed
  • Access Expo's development tools and services
  • Easily integrate new Expo modules as they become available

Navigation:

@react-navigation/native @react-navigation/native-stack
@react-navigation/bottom-tabs

Animation and UI:

react-native-safe-area-context react-native-paper
react-native-reanimated @shopify/react-native-skia

Capabilities:

react-native-sensors react-native-gesture-handler

State Management:

@reduxjs/toolkit react-redux redux-logger
redux-persist @react-native-async-storage/async-storage

Performance:

@shopify/flash-list react-native-fast-image

Quick Start

init - Create New Project

Create a new React Native project from the template:

npx @reuvenorg/react-native-boilerplate-ultimate init MyProject

Options:

  • -d, --destination <path> - Destination directory (default: current directory)
  • --skip-install - Skip npm install
  • -t, --template <name> - Template variant to use (default: main)

Examples:

npx @reuvenorg/react-native-boilerplate-ultimate init MyAwesomeApp -d ~/Projects
npx @reuvenorg/react-native-boilerplate-ultimate init MyAwesomeApp -d /Users/username/Development --skip-install

Project Commands

modules - Manage Modules

Enable, disable, or check the status of project modules:

npx @reuvenorg/react-native-boilerplate-ultimate modules

Options:

  • -s, --status - Show module status
  • -e, --enable <module> - Enable a specific module or "all"
  • -d, --disable <module> - Disable a specific module or "all"
  • --destination <path> - Project directory path

Available Modules:

  • md-chat-ai-screen - AI Chat functionality
  • md-redux-screen - Redux example screen
  • md-skia-accelerometer-screen - Skia accelerometer demo

Examples:

npx @reuvenorg/react-native-boilerplate-ultimate modules --status
npx @reuvenorg/react-native-boilerplate-ultimate modules --enable md-chat-ai-screen
npx @reuvenorg/react-native-boilerplate-ultimate modules --disable all
npx @reuvenorg/react-native-boilerplate-ultimate modules --status --destination ~/Projects/MyApp

icons - Generate Icons

Generate app icons and splash screens:

npx @reuvenorg/react-native-boilerplate-ultimate icons

Options:

  • --android - Generate Android icons only
  • --ios - Generate iOS icons only
  • --splash - Generate splash screens only
  • --primary <color> - Primary color (default: #1976D2)
  • --background <color> - Background color (default: #FFFFFF)
  • --destination <path> - Project directory path

Prerequisites: The target project must have the canvas package installed:

npm install canvas --save-dev

Examples:

npx @reuvenorg/react-native-boilerplate-ultimate icons --primary "#FF6B6B" --background "#FFFFFF"
npx @reuvenorg/react-native-boilerplate-ultimate icons --android
npx @reuvenorg/react-native-boilerplate-ultimate icons --splash
npx @reuvenorg/react-native-boilerplate-ultimate icons --primary "#2196F3" --destination /path/to/project

refresh - Refresh Project

Refresh React Native project (clear cache, reinstall modules, etc.):

npx @reuvenorg/react-native-boilerplate-ultimate refresh

Options:

  • -w, --watchman - Clear watchman watches only
  • -m, --modules - Clean and reinstall node modules only
  • -s, --start - Start with cache reset only
  • --destination <path> - Project directory path

Examples:

npx @reuvenorg/react-native-boilerplate-ultimate refresh --watchman
npx @reuvenorg/react-native-boilerplate-ultimate refresh --modules
npx @reuvenorg/react-native-boilerplate-ultimate refresh  # Full refresh
npx @reuvenorg/react-native-boilerplate-ultimate refresh --modules --destination ~/MyProject

devices - List Devices

List connected Android and iOS devices:

npx @reuvenorg/react-native-boilerplate-ultimate devices

Options:

  • -d, --details - Show detailed device information
  • -a, --android - Show Android devices only
  • -i, --ios - Show iOS devices only
  • --destination <path> - Project directory path (optional for devices command)

Prerequisites:

  • Android: Android SDK platform tools (adb)
  • iOS: Xcode Command Line Tools (xcrun)
  • iOS Details: libimobiledevice (brew install libimobiledevice)

Examples:

npx @reuvenorg/react-native-boilerplate-ultimate devices --details
npx @reuvenorg/react-native-boilerplate-ultimate devices --android
npx @reuvenorg/react-native-boilerplate-ultimate devices --ios

Usage Patterns

Creating a New Project

# Create a new project
npx @reuvenorg/react-native-boilerplate-ultimate init MyProject

# Navigate to project
cd MyProject

# Check module status
npx @reuvenorg/react-native-boilerplate-ultimate modules --status

# Enable specific modules
npx @reuvenorg/react-native-boilerplate-ultimate modules --enable md-chat-ai-screen

# Generate custom icons
npx @reuvenorg/react-native-boilerplate-ultimate icons --primary "#FF6B6B"

# Check connected devices
npx @reuvenorg/react-native-boilerplate-ultimate devices

Managing Existing Project

# Navigate to your project directory
cd MyExistingProject

# Enable all modules
npx @reuvenorg/react-native-boilerplate-ultimate modules --enable all

# Refresh project when having issues
npx @reuvenorg/react-native-boilerplate-ultimate refresh

# Generate new icons
npx @reuvenorg/react-native-boilerplate-ultimate icons --primary "#2196F3"

Development

Building the CLI

npm install
npm run build

Template Documentation

Modular Architecture

The template uses a modular architecture where features are organized as independent npm packages in a modules/ directory. Each module is self-contained with its own dependencies and can be easily enabled or disabled. This approach provides:

  • Clean separation of concerns
  • Easy maintenance and updates
  • Selective feature inclusion - only use what you need
  • Scalable codebase structure

Expo Modules Support

The template includes full Expo modules support with pre-configured integration:

  • Expo SDK compatibility - Latest Expo modules work out of the box
  • Development build ready - Configured for Expo Development Builds
  • EAS Build support - Compatible with Expo Application Services
  • Hybrid workflow - Mix Expo modules with native code seamlessly
  • Auto-linking - Expo modules are automatically linked during setup

Additional Resources

For detailed documentation about the React Native template structure, components, and features, see the React Native Template repository.

Requirements

  • Node.js >= 18
  • React Native development environment
  • For icons: canvas package in target project
  • For devices: Platform-specific tools (adb, xcrun)

Support

For issues and feature requests, please visit: https://github.com/reuvenaor/@reuvenorg/react-native-boilerplate-ultimate/issues

License

MIT