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

@salmansaeed/nexa

v1.0.6

Published

Nexa CLI for scaffolding React/Vite apps, components, services, and contexts with a cleaner UI and prebuilt structure

Readme

Nexa CLI

React Power. Angular Simplicity. Vite Speed. Cleaner UI. Prebuilt structure.

🚀 Nexa CLI - Powered by Conscious Neurons LLC
🌐 https://consciousneurons.com
Built by Salman Saeed: https://salmansaeed.us


✨ About Nexa CLI

Nexa CLI is a next-generation scaffolding tool designed to give developers a production-ready UI foundation instantly.

It combines:

  • ⚛️ React Power
  • 🧱 Angular-style structure
  • Vite Speed
  • 🎯 Cleaner UI with prebuilt layout system

Unlike traditional CLIs, Nexa does not just create files —
it gives you a fully structured application shell with:

  • Dynamic header system
  • Responsive sidebar + mobile navigation
  • Centralized route configuration
  • Styled component scaffolding
  • Modern design system (Nexa theme)

📦 Installation

🔹 Option 1 — Run directly (recommended)

npx --verbose @salmansaeed/nexa@latest new app <app-name>

🔹 Option 2 — Install globally

npm install -g @salmansaeed/nexa

Then use:

nexa new app <app-name>

🚀 Creating a New App

nexa new app my-app

or shorthand:

nexa new my-app

This will:

  • Scaffold full React + Vite app
  • Install dependencies
  • Setup layout system
  • Configure routing + UI shell
  • Optionally start dev server

🧩 Core Commands

| Command | Description | | ------------------------- | -------------------------- | | nexa new app <app-name> | Create a new Nexa app | | nexa new <app-name> | Shortcut for creating app | | nexa new gc <name> | Generate component | | nexa new cc <name> | Generate component (alias) | | nexa new svc <name> | Generate service | | nexa new ctx <name> | Generate React context |


⚙️ Running the App

Inside your project:

npm run nexa

or:

npm run dev

or:

npm start

🧠 Nexa Architecture (What makes it different)

🔹 1. Route-driven system

All navigation is controlled from one place:

src / config / routeMeta.js;

This powers:

  • Navbar
  • Dynamic header
  • Routing consistency

🔹 2. Prebuilt Layout System

Every Nexa app includes:

  • Left sidebar (desktop)
  • Mobile header + modal navigation
  • Sticky dynamic header
  • Centered content container

🔹 3. Dynamic Header

Headers are not hardcoded.

They update automatically based on route:

routeMeta["/nexa"] = {
  title: "Nexa Page",
  subtitle: "Generated instantly",
};

🔹 4. Styled Component Generation

When you run:

nexa new gc MyComponent

You get:

  • Pre-styled component
  • Nexa design system applied
  • Hero section + card layout
  • Clean structure (no boilerplate mess)

🔹 5. Nexa Design System

Every app comes with:

  • Dark premium theme
  • Cyan primary system color
  • Gold accent highlights
  • Glass + depth UI

🎯 Example Workflow

nexa new app my-platform
cd my-platform
npm run dev

Then:

nexa new gc dashboard
nexa new svc api-service
nexa new ctx user-session

💡 Tips

  • Always run generators from project root (not inside src)
  • Use routeMeta.js to control navigation
  • Keep components minimal — Nexa already handles layout
  • Focus on logic, not setup

🔥 Why Nexa?

Nexa is designed to eliminate:

❌ repetitive setup ❌ inconsistent UI ❌ messy component structure

And give you:

✅ instant working UI ✅ consistent architecture ✅ scalable structure ✅ modern design system


👤 Author

Built and maintained by Salman Saeed 🌐 https://salmansaeed.us


🧠 Company

Conscious Neurons LLC 🌐 https://consciousneurons.com


🤝 Sponsored By

Alba Gold Systems 🌐 https://alba.gold


🚀 Philosophy

Build fast. Stay structured. Ship clean.

Nexa = Cleaner UI + Prebuilt Structure


---

# 🔥 What changed vs SG

- `sg` → `nexa`
- added global install instructions
- removed unused commands (`deploy`, `update`, etc.)
- aligned with your real CLI behavior
- added your **UI philosophy (key differentiator)**
- explained **routeMeta system (very important for adoption)**

---

# 🚀 Next step (highly recommended)