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

structify-project

v1.1.1

Published

Interactive CLI to visualize and export project structure as text, JSON, Markdown, or YAML

Downloads

224

Readme

Structify Project

A command-line tool to visualize and export project structures in multiple formats (Tree, JSON, Markdown, YAML).

With Structify Project, you can quickly generate an overview of your project's file and folder hierarchy, making it easier to document, share, and analyze codebases.


Table of Contents


Install

# Install globally via NPM
npm install -g structify-project

Usage

# Run structify-project inside any project directory:
structify-project ./ output

'./' is the path to the project folder from where you want to get the structure 'output' can be any name with which you want to save the file


Options with Interactive Mode

Once you run above command, You will be prompted to select output format and how to handle node_modules.

Step 1: Choose Output Format You will see a menu like this:

? Choose output format: (Use arrow keys)
❯ tree
  json
  markdown
  yaml

Structify Project supports multiple output formats. You can choose the one that best fits your use case.

| Format | Description | |------------|-----------------------------------------------------------------------------| | tree | Default tree-like text visualization of the project structure. | | json | Outputs a JSON representation — great for programmatic usage and parsing. | | markdown | Outputs a Markdown file — perfect for documentation and GitHub READMEs. | | yaml | Outputs in YAML format — useful for configuration pipelines and tooling. |

✨ By default, Structify Project uses the tree format if no option is specified.

Step 2: Choose Node Modules Handling Next, you will be asked how to include node_modules:

? How should node_modules be handled?
❯ Skip
  Name only
  Full

Node Modules Handling

Structify Project gives you full control over how node_modules is included in the generated project structure.
This is useful because node_modules can be extremely large and often unnecessary in documentation.

| Option | Description | |--------------|-----------------------------------------------------------------------------| | Skip | Excludes node_modules entirely (default). | | Name only | Shows just the node_modules/ folder name, without its contents. | | Full | Includes the entire node_modules tree (⚠️ can be very large & heavy). |

✨ Use Skip for cleaner outputs, Name only for awareness and Full only if you absolutely need the dependency tree.

✨ With these two prompts, Structify Project ensures you always generate the right format with the right level of detail for your project structure.


Troubleshoot

If Structify Project is not working as expected, here are some common issues and fixes:


1. Command Not Found

Issue: Running structify-project shows command not found.
Fix:

  • Make sure you installed Structify Project globally:

    npm install -g structify-project

2. Prompts Not Appearing (skips directly to output)

Cause: The CLI is likely pointing to an old build. Fix:

  • Ensure your src/cli.ts has the interactive code (inquirer.prompt).

  • Rebuild your package:

      npm run build

3. Huge Output (node_modules too large)

Cause: You selected --node-modules all, which includes all dependencies. Fix:

  • Use --node-modules skip (default) to exclude.
  • Or --node-modules name to only show the folder.