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

projectify-cli

v2.1.5

Published

Project Analyzer using LangChain

Readme

Projectify

Autonomous Code Analysis & Visualization Engine

Projectify is a powerful, standalone Node.js tool designed to analyze codebase architectures, calculate dependency impacts ("Blast Radius"), and generate stunning, interactive visualizations. Built with TypeScript and powered by AI.

Projectify HTML Report

Features

  • AI-Powered Insights: Uses OpenAI (LangChain) to summarize architecture and explain high-risk components.
  • Blast Radius Calculation: Instantly identify the most critical files in your project based on dependency impact.
  • Interactive Visualization: Generates a premium, Shadcn-style HTML report with physics-based graphs and search.
  • Project Explorer: Built-in file tree and source code viewer with syntax highlighting.
  • Deep Dependency Analysis: Tracks external libraries and visualizes which files use them ("Inverse Dependencies").
  • Git Evolution: Analyzes commit history to provide context on project velocity and recent changes.
  • Multi-Language Support:
    • JavaScript / TypeScript (AST-based)
    • Python (Regex/Heuristic-based)
  • Fast & Standalone: optimized for speed, zero external Python dependencies.

Installation

# Clone the repository
git clone https://github.com/your-repo/projectify.git

# Install dependencies
cd projectify-cli
npm install

# Build the project
npm run build

Usage

1. Interactive Mode (Recommended)

Simply run the CLI without arguments to launch the interactive setup wizard. It will guide you through provider selection (OpenAI, Gemini, Ollama) and API key entry.

# Using npx
npx projectify-cli

# Or if installed globally
projectify

2. Manual / CI Mode

Run non-interactively by passing arguments:

# Basic Analysis (No AI)
projectify . --no-ai

# With auto-detected environment variables
export GEMINI_API_KEY=...
projectify . --provider gemini

# Force specific provider
projectify . --provider ollama --model llama3

CLI Options

  • path: (Optional) Path to the project to analyze. Defaults to current directory.
  • --summary: Enable AI-powered project summarization.
  • --no-ai: Disable individual file AI analysis.

Output

All reports are generated in the projectify-cli directory:

| File | Description | |------|-------------| | analysis-report.html | Interactive Dashboard. View dependency graphs, search nodes, and see detailed stats. | | analysis-report.json | Raw Data. Complete dependency graph and metrics in JSON format. | | project-summary.md | AI Report. High-level architecture overview and risk assessment. |

Architecture

  • Scanner: Fast-glob based file traversal.
  • Analyzer: Babel-based AST parsing for JS/TS; Custom regex parser for Python.
  • Graph Engine: Directed graph construction with cycle detection and impact scoring.
  • UI: Customized vis-network with Tailwind CSS (Shadcn/Zinc theme).

Developer

Developed by GreenHacker.