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

@mbdayo/react-native-upgrade

v1.0.0

Published

CLI tool to help upgrade React Native applications

Readme

@mbdayo/react-native-upgrade

A CLI tool to help React Native developers upgrade their apps with ease.

Features

  • 🔍 Automatically detects your current React Native version
  • 📋 Shows latest available versions
  • 🔗 Provides direct links to upgrade-helper with your specific version diff
  • 📝 Step-by-step upgrade instructions
  • 📦 Optional automatic package.json update

Usage

No installation needed! Just run:

npx @mbdayo/react-native-upgrade

Or use the shorter alias:

npx @mbdayo/react-native-upgrade rn-upgrade

Or if you want to install it globally:

npm install -g @mbdayo/react-native-upgrade
react-native-upgrade
# or
rn-upgrade

How it works

  1. Reads your current react-native version from package.json
  2. Fetches available React Native versions from npm
  3. Prompts you to select a target version
  4. Generates upgrade instructions with links to the upgrade helper
  5. Optionally updates your package.json

Example

$ npx @mbdayo/react-native-upgrade

🚀 React Native Upgrade Tool

✅ Current version: 0.72.0

📦 Fetching available React Native versions...

📋 Latest available versions:
  1. 0.76.1
  2. 0.76.0
  3. 0.75.4
  4. 0.75.3
  5. 0.75.2

🎯 Enter target version (or press Enter for latest): 0.76.1

📈 Upgrading from 0.72.0 to 0.76.1...

📝 Upgrade steps:

1. 🔗 View detailed changes:
   https://react-native-community.github.io/upgrade-helper/?from=0.72.0&to=0.76.1

2. 📦 Update package.json dependencies:
   npm install [email protected]

3. 📱 Update iOS dependencies:
   cd ios && pod install && cd ..

4. 🤖 Clean Android build:
   cd android && ./gradlew clean && cd ..

5. 🧹 Clean caches:
   npx react-native start --reset-cache

Project Structure

@mbdayo/react-native-upgrade/
├── src/
│   └── index.ts        # Main CLI logic
├── dist/               # Compiled output (generated)
├── package.json
├── tsconfig.json
└── README.md

Development

  1. Clone the repository

  2. Install dependencies:

    npm install
  3. Build the project:

    npm run build
  4. Test locally:

    npm link
    cd /path/to/your/react-native-project
    react-native-upgrade

Roadmap

  • [ ] Automatic code transformation for common patterns
  • [ ] Support for applying diffs automatically
  • [ ] Breaking changes detection
  • [ ] Third-party dependency compatibility checks
  • [ ] Backup/rollback functionality
  • [ ] Support for Expo managed workflow

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT

Credits

This tool leverages the amazing work of: