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

moduly-cli

v1.0.4

Published

Project Architecture Analyzer & Developer Workflow Dashboard

Downloads

404

Readme

Moduly CLI

Moduly is an advanced architecture analysis tool that automatically scans your JavaScript and TypeScript codebases. It transforms messy directory structures into intuitive, navigable metrics, and pushes the data to a beautiful 3D dashboard.

Overview

The moduly-cli is built to be a seamless, zero-config tool that fits directly into your developer workflow. By performing deep AST-level parsing locally, it generates actionable insights into your codebase's health, dependencies, and performance, without sending your code to any external servers.

Features

  • 🔍 Deep Scanning: AST-level parsing to analyze dependencies, import relationships, and architectural bottlenecks.
  • 📦 Dependency Analysis: Detects used, unused, and outdated packages automatically.
  • 🛡️ Security Check: Analyzes code for dangerous patterns (eval(), innerHTML, command injection) alongside npm audit checks.
  • Performance Profiling: Estimates bundle impact and identifies uniquely large structural files/dependencies.
  • 📈 Health Score: A unified 0-100 metric based on modularity, coupling ratios, vulnerabilities, and Git history hotspots.
  • 🪄 AI Mode: Machine learning mode to scan through git logs detecting semantically huge architectural commits and hotspots.

Installation

Install Moduly globally via npm:

npm i -g moduly-cli

Quick Start

Navigate to any JavaScript or TypeScript project on your machine, and type:

moduly analyze --report

Moduly will immediately orchestrate seven specialized analysis modules over your codebase. Once completed, the CLI will automatically launch the Moduly Dashboard in your browser (https://moduly-zeta.vercel.app/dashboard).

Commands & Flags

  • moduly analyze — Scans the entire project and outputs structural logs locally within a .moduly/ folder.
    • --report: Generates the report.json struct, saves it, and pushes it directly to the live dashboard.
    • --open: Manually forces the dashboard to open.
  • moduly ai <on|off> — Toggles AI-assisted commit anomaly detection on or off across project runs.

Output format

A successful analyze --report generates a highly structured report.json that looks like this:

{
  "projectName": "my-app",
  "score": 87,
  "stats": { ... },
  "dependencies": {
    "nodes": [...],
    "links": [...]
  },
  "packageDependencies": { ... },
  "security": [ ... ],
  "performance": [ ... ]
}

Note on @schemerr/moduly

If you previously saw an accidentally scopes npm package named @schemerr/moduly, feel free to ignore or delete it from your npm portal. moduly-cli is the clean, official, globally unique package name!


Made for modern developer workflows.