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

@fadyshawky/react-native-magic

v2.2.0

Published

Plug-and-play React Native template: TypeScript, Redux, React Navigation, scalable architecture. Init and start developing without hassle.

Readme

ReactNativeMagic

Plug and play – create your app and start developing without hassle.

A production-ready React Native template with TypeScript, Redux, React Navigation, and a scalable architecture (Uprise-style). Use it to bootstrap new apps with one command.

Requirements

  • Node.js >= 20 (Download)
  • JDK >= 11 (Download)
  • Ruby >= 2.7.5 (for iOS)
  • Xcode (for iOS) / Android Studio (for Android)

Quick start

npx @react-native-community/cli init YourAppName --template @fadyshawky/react-native-magic
cd YourAppName

Optional: set your bundle ID at creation:

npx @react-native-community/cli init YourAppName --template @fadyshawky/react-native-magic --package-name com.yourcompany.yourapp

For iOS, install pods:

cd ios && pod install && cd ..

Then run:

npm start
npm run ios    # or an Android variant below

First steps after creating your app

  1. App name & bundle ID – Set at init (or you’ll be prompted for package name if you didn’t pass --package-name). See CUSTOMIZATION.md.
  2. API – Copy .env.example to .env and set API_BASE_URL (and other vars) for your backend.
  3. Theme – Edit src/core/theme/colors.ts (and fonts.ts, commonSizes.ts if needed) for your brand.
  4. Config – Optional: adjust src/core/config/index.ts for feature toggles or app-level constants.

Documentation

In your generated project you’ll have:

Project structure (in your app)

src/
├── common/          # Shared components, localization, helpers, validations, utils
├── core/            # Store (Redux), API, theme, config
├── navigation/      # Auth stack, main stack, tabs
├── screens/         # Feature screens
└── sheetManager/    # Action sheets

Scripts

| Command | Description | |---------|-------------| | npm start | Start Metro bundler | | npm run ios | Run on iOS | | npm run android:prod:debug | Run Android (production, debug) | | npm run android:prod:release | Run Android (production, release) | | npm run android:staging:debug | Run Android (staging, debug) | | npm run android:staging:release | Run Android (staging, release) | | npm run android:development:debug | Run Android (development, debug) | | npm run android:development:release | Run Android (development, release) | | npm test | Run tests | | npm run lint | Lint code |

Versioning

  • React Native: ^0.84.x (current stable at release).
  • React: ^19.2.x.
  • Node: >= 24 (LTS).

Common issues

iOS – Pod install fails

cd ios && pod deintegrate && pod install && cd ..

Android – Gradle / SDK

  • Run ./gradlew clean in android/.
  • Ensure android/local.properties has sdk.dir set to your Android SDK path.

Upgrading React Native

Use React Native Upgrade Helper (select current → target version) and apply the suggested changes.

Contributing

Contributions are welcome. See CONTRIBUTING.md for how to get started, run the template locally, and open a pull request. This project adheres to a Code of Conduct.

License

MIT – see LICENSE.md.

Author

Fady Shawky – GitHub