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

@nutifar/cli

v1.0.0

Published

The official Nutifar CLI

Readme

🚀 Nutifar CLI

Detect your project, install the right Nutifar SDK, and diagnose your setup with an interactive CLI.

npm License Node


✨ Features

  • 🔍 Automatic project detection
  • 📦 Install the correct Nutifar SDK
  • 🩺 Diagnose your Nutifar setup
  • 📋 View SDK information
  • 🔄 Manage Nutifar SDKs
  • ⚡ Interactive terminal prompts
  • 🧩 Supports multiple package managers

Installation

You can run the CLI directly with npx:

npx nutifar

Or install it globally:

npm install -g @nutifar/cli
pnpm add -g @nutifar/cli
yarn global add @nutifar/cli

Usage

Start the interactive CLI:

nutifar

You will see the Nutifar CLI menu:

🚀 Nutifar

? What do you want to do?
❯ Setup Nutifar
  Install an SDK
  Check project
  View SDK info
  Exit

Setup Nutifar

The setup command automatically detects your project and resolves the correct Nutifar SDK.

? What do you want to do?
❯ Setup Nutifar

For example, in an Expo project:

✓ Project detected

Platform: Expo
Package manager: pnpm

? Install @nutifar/expo?
❯ Yes
  No

✓ Nutifar setup complete 🚀

The CLI currently supports:

  • Expo
  • React Native
  • Web
  • Node.js

Install an SDK

Install a Nutifar SDK manually:

? What do you want to do?
❯ Install an SDK

Available SDKs:

@nutifar/web
@nutifar/expo
@nutifar/react-native
@nutifar/node

The CLI automatically detects your package manager and runs the correct installation command.

pnpm

pnpm add @nutifar/expo

npm

npm install @nutifar/expo

yarn

yarn add @nutifar/expo

bun

bun add @nutifar/expo

Check your project

Use the built-in project diagnostics:

? What do you want to do?
❯ Check project

Nutifar Doctor checks your project for common issues:

🩺 Nutifar Doctor

✓ Project Project detected
  expo

✓ SDK Nutifar SDK installed
  @nutifar/expo

✓ Dependencies Package manager detected
  pnpm

✓ Everything looks good 🚀

The diagnostic system is designed to support additional checks as the Nutifar ecosystem grows.


Supported SDKs

| Platform | Package | Status | | --------------- | ----------------------- | -------------- | | 🌐 Web | @nutifar/web | ✅ Stable | | 📱 Expo | @nutifar/expo | ✅ Stable | | 📲 React Native | @nutifar/react-native | ✅ Stable | | 🟢 Node.js | @nutifar/node | ✅ Stable | | 🐍 Python | @nutifar/python | 🚧 Coming Soon | | 🐘 Laravel | @nutifar/laravel | 🚧 Coming Soon |


Package Manager Detection

The CLI automatically detects the package manager used by your project.

Supported package managers:

  • pnpm
  • npm
  • yarn
  • bun

The detected package manager is used when installing Nutifar SDKs.


Development

Clone the repository:

git clone https://github.com/BigYusuf/nutifar-sdk.git
cd nutifar-sdk

Install dependencies:

pnpm install

Build the CLI:

pnpm --filter @nutifar/cli build

Run the CLI locally:

node packages/cli/dist/index.js

Start development mode:

pnpm --filter @nutifar/cli dev

Architecture

The CLI uses a registry-driven architecture.

Project
   │
   ▼
Project Detector
   │
   ▼
Platform
   │
   ▼
SDK Registry
   │
   ▼
SDK Resolver
   │
   ▼
SDK Installer

SDKs are defined in a central registry:

const SDK_REGISTRY = [
  {
    packageName: "@nutifar/expo",
    platform: "expo",
  },
  {
    packageName: "@nutifar/react-native",
    platform: "react-native",
  },
];

This allows new Nutifar SDKs to be added to the CLI without duplicating installation logic.


Roadmap

  • ✅ Interactive CLI
  • ✅ Project detection
  • ✅ Package manager detection
  • ✅ SDK registry
  • ✅ SDK installation
  • ✅ Project diagnostics
  • 🚧 SDK information
  • 🚧 SDK updates
  • 🚧 SDK version checks
  • 🚧 SDK migration assistant

License

Released under the MIT License.

Made with ❤️ by BigYusuf.