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-rn

v1.0.4

Published

Short & interactive React Native project initializer

Readme

🚀 create-rn

A modern, interactive CLI to create React Native projects easily — without remembering long commands.

Built with ❤️ in India 🇮🇳
GitHub: https://github.com/getsettalk


🎯 Features

  • ✅ Short & memorable command
  • 🎨 Beautiful terminal UI
  • 📦 Optional project name (prompt if missing)
  • 🔢 Choose React Native version (latest / older / custom)
  • 🧠 Proper validation (project name & version)
  • 🛑 Graceful cancel (Ctrl + C)
  • 💻 Works on macOS, Windows & Linux
  • ⚡ Always uses official React Native Community CLI

📦 Usage

Create a project (interactive)

npx  create-rn

Create a project with name

npx  create-rn MyApp

You will be prompted to:

  1. Enter project name (if not provided)
  2. Select React Native version
  3. Confirm project creation

🔢 React Native Version Options

  • latest (0.83.1)
  • Older stable versions
  • Custom version (manual input, e.g. 0.81.4)

This avoids npm dependency conflicts and follows official best practices.

⚠️ Before You Run create-rn (IMPORTANT)

Make sure your system is properly set up for React Native development.

✅ Required

  • Node.js ≥ 18
  • npm (comes with Node)

Check versions:

node -v
npm -v

🤖 Android Setup (Required for Android)

Install:

  • Android Studio
  • Android SDK
  • Emulator or physical device

Follow official guide: 👉 https://reactnative.dev/docs/environment-setup

Make sure:

  • ANDROID_HOME is set
  • Emulator runs successfully

🍎 iOS Setup (macOS only)

Install:

  • Xcode
  • Xcode Command Line Tools
xcode-select --install

Also install CocoaPods:

sudo gem install cocoapods

🛑 Cancel Anytime

You can safely cancel the process using:

Ctrl + C

create-rn exits gracefully without errors.


🧠 How It Works

  • Uses React Native Community CLI
  • No dependency hacks
  • No global installs required
  • Always compatible with official RN releases

📌 Best Practice

Always run via:

npx  create-rn

This ensures you always use the latest published version of the CLI.


Screenshot

🧪 Example Flow

✔ Project name: MyApp
✔ Select React Native version: latest (0.83.1)
✔ Create React Native project "MyApp"? Yes

🛠 Troubleshooting

❓ npm dependency errors?

You are safe — create-rn uses the official CLI method which avoids common npm peer dependency conflicts.


✨ Why create-rn?

Creating a React Native project usually requires remembering long commands like:

npx @react-native-community/cli@latest init MyApp

or for older versions:

npx @react-native-community/[email protected] init MyApp --version 0.83.1

create-rn simplifies all of this into one clean command with an interactive experience.


📄 License

MIT © getsettalk


🌟 Contributing

Pull requests are welcome! If you have ideas or improvements, feel free to open an issue.


❤️ Support

If this project helped you:

  • ⭐ Star the repo
  • 🐦 Share with other React Native devs

Happy coding 🚀