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

nativeui-cli

v1.0.0-beta.0

Published

Add beautiful components to your Expo app.

Downloads

139

Readme

nativeui-cli

The CLI for Native UI — a collection of beautiful, native-feeling React Native and Expo components that you fully own. The CLI for Native UI — a collection of beautiful, native-feeling React Native and Expo components that you fully own.

Unlike traditional component libraries, Native UI copies component source code directly into your project. No black boxes, no lock-in, and no fighting library abstractions.

Features

  • 🎨 Native-feeling UI components for Expo and React Native
  • 📦 Copy components directly into your codebase
  • 🌗 Built-in dark mode support
  • ⚡ Reanimated-powered interactions and animations
  • ♿ Accessible by default
  • 🔧 Fully customizable source code
  • 🚫 No vendor lock-in

Quick Start

Initialize Native UI in your project:

npx nativeui-cli@latest init

Then add components:

npx nativeui-cli@latest add button typography

Commands

init

Set up Native UI in your project.

nativeui-cli init

Creates:

  • native-ui.json
  • Theme utilities
  • Required dependencies
  • Project configuration

Options

| Flag | Description | | ------------- | -------------------------------- | | -y, --yes | Skip prompts and use defaults | | -f, --force | Overwrite existing configuration |


add

Add one or more components.

nativeui-cli add button
nativeui-cli add button input card
nativeui-cli add --all

Options

| Flag | Description | | ----------------- | -------------------------------- | | -o, --overwrite | Overwrite existing files | | -a, --all | Install all available components |


remove

Remove installed components.

nativeui-cli remove button

Alias:

nativeui-cli rm button

list

List available and installed components.

nativeui-cli list

Alias:

nativeui-cli ls

diff

Compare your local components against the latest registry versions.

nativeui-cli diff
nativeui-cli diff button

Useful when new component updates are released and you've customized local copies.


Example

# Initialize project
npx nativeui-cli@latest init

# Add components
npx nativeui-cli@latest add button card input

# Check installed components
npx nativeui-cli@latest list

# See available updates
npx nativeui-cli@latest diff

Philosophy

Native UI follows the same philosophy that made shadcn/ui popular:

You own the code.

Components are copied into your project as TypeScript source files. Edit them, refactor them, or delete them entirely. The CLI helps you get started, but your code remains yours.


Documentation

Visit the documentation site for installation guides, component documentation, and examples.

https://nativeui.qzz.io


License

MIT