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-nitro-project

v0.0.1

Published

A CLI to create production-grade React Native Nitro Modules

Readme

create-nitro-project

Test CLI

The fastest way to scaffold production-grade React Native Nitro Modules.

Hey there! Welcome to create-nitro-project.

If you're looking to build high-performance native modules for React Native without the headache, you're in the right place. This CLI handles all the boring setup so you can focus on the fun part—writing C++, Swift, or Kotlin code that runs blazing fast.

Why Nitro?

Nitro Modules are the next big thing. Seriously.

  • Zero Overhead: No bridge. Just direct, synchronous calls via JSI.
  • Type-Safe: We generate bindings for you. TypeScript <-> Native. No guesswork.
  • Modern: Built for the future of React Native (Bridge-less).

Features

  • Instant Scaffolding: One command, and you have a full monorepo ready to go.
  • Cross-Platform: Android, iOS, macOS, Windows? We got you.
  • Your Language, Your Choice:
    • Android: Love Kotlin? Go for it. Need raw C++ power? We support that too.
    • iOS: Swift by default, but fully C++ compatible.
  • Premium DX:
    • Monorepo: Smart setup with Bun/NPM workspaces.
    • Linting: Pre-configured ESLint & Prettier. No bike-shedding.
    • Example App: Comes with a working app to test your module immediately.

Prerequisites

Just make sure you have the basics:

  • Node.js 18+ or Bun 1.0+
  • Xcode (for iOS/macOS dev)
  • Android Studio (for Android dev)

Usage

We made this super easy. Just run:

npx create-nitro-project@latest
# or if you prefer Bun (we do!)
bun create nitro-project

Interactive Mode

The CLI is friendly! It will ask you a few questions:

  1. Name: What do you want to call your cool module?
  2. Languages: Kotlin or C++? Swift or C++?
  3. Addons: Need macOS support? Just check the box.

For CI / Robots

Want to skip the chat? You can pass arguments directly:

npx create-nitro-project MyFastModule \
  --android kotlin \
  --ios swift \
  --addon macos windows \
  --author "Your Name" \
  --author-url "https://github.com/you" \
  --repo-url "https://github.com/you/repo"

What Do You Get?

A clean, modern monorepo structure:

MyFastModule/
├── packages/
│   └── my-fast-module/       # Here is your code!
│       ├── src/              # TypeScript specs
│       ├── android/          # Native Android implementation
│       ├── ios/              # Native iOS implementation
│       └── nitro.json        # Generator config
├── example/                  # Run this to test your changes
├── node_modules/             # Dependencies
└── package.json              # Workspace root

How to Develop

  1. Define your API in src/specs/MyModule.nitro.ts.
  2. Generate bindings:
    bun run build
  3. Write Native Code: Implement the interface in android/ and ios/.
  4. Run the Example:
    bun run example start

Acknowledgements

Huge shoutout to margelo/react-native-quick-crypto for the inspiration and boorad for the groundwork.

License

MIT © Athex Web3


Built with love for the React Native community.