This library is useless. I am starting to contribute to theReact Native Reusables

CLI

How to use the nativecn CLI to initialize your project, add components, and manage dependencies.

Usage

The nativecn CLI provides commands to initialize your project and add components.

Initialize nativecn

To initialize your project and install dependencies, run:

npx nativecn init

Options:

  • -y, --yes: Skip confirmation prompt
  • -c, --cwd <cwd>: Specify the working directory (default: current directory)

Add components

To add specific components to your project, use:

npx nativecn add [...Components]

Options:

  • -y, --yes: Skip confirmation prompt
  • -o, --overwrite: Overwrite existing files
  • -c, --cwd <cwd>: Specify the working directory (default: current directory)
  • -a, --all: Add all available components
  • -p, --path <path>: Specify the path to add the component to

Additional Information

  • The init command sets up necessary configuration files like tailwind.config.js, babel.config.js, and others.
  • It also installs required dependencies including NativeWind, TailwindCSS, and other utility libraries.
  • The add command fetches component code from a registry and adds it to your project.
  • Use --help with any command for more detailed information.