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 🙏

© 2025 – Pkg Stats / Ryan Hefner

gh-tree

v0.1.0

Published

Fetch and visualize GitHub repository file trees.

Readme

GitHubTree

GitHubTree (gh-tree) is a high-performance repository visualizer. It allows you to explore, navigate, and generate ASCII directory trees for any GitHub repository without cloning.

It is available as a Web Application, a CLI Tool, and a Node.js Library.

🌐 For Users: The Web App

The fastest way to visualize a repository. No installation required.

👉 Use Web App: githubtree.mgks.dev

Features

  • Instant Search: Visualize any public repository (e.g., facebook/react).
  • Private Repo Access: Securely access your private repositories using a Personal Access Token (saved locally to your browser).
  • Smart Copy: Copy the entire directory tree as text, or copy specific file paths.
  • Visual Styles: Toggle between Classic (└──), Slashed (/src), Minimal, and ASCII (+--).
  • Deep Linking: Share links to specific repositories and branches (e.g., /repo/mgks/dhwani/main).

💻 For Developers: The CLI

Generate directory trees directly in your terminal. Perfect for documentation and quick checks.

Usage (No Install)

Run via npx to fetch a tree instantly:

npx gh-tree user/repo

Installation (Global)

npm install -g gh-tree

Commands & Flags

gh-tree <user/repo> [flags]

Flags:
  --branch, -b <name>   Specify branch (default: main)
  --icons               Show file/folder icons in output
  --token, -t <key>     Use a specific GitHub Token
  --save-token <key>    Save a token globally for future use
  --help                Show help

Example:

gh-tree facebook/react --icons --branch main

📦 For Builders: The NPM Package

Use the core engine to fetch trees and generate ASCII structures in your own applications.

Installation

npm install gh-tree

Usage

import { GitHubTree } from 'gh-tree';

// 1. Initialize (Token optional, but recommended for higher rate limits)
const gt = new GitHubTree(process.env.GITHUB_TOKEN);

// 2. Fetch Tree
try {
    const { tree } = await gt.getTree('mgks/githubtree', 'main');
    
    // 3. Sort & Generate ASCII
    const sorted = gt.sortTree(tree, 'folder-az');
    const output = gt.generateAsciiTree(sorted, { icons: true });
    
    console.log(output);
} catch (err) {
    console.error(err);
}

API Reference

new GitHubTree(token?)

Creates a new instance.

  • token (string, optional): GitHub Personal Access Token.

getTree(repo, branch?)

Fetches the raw recursive tree from GitHub API.

  • Returns: { tree: Array, truncated: Boolean }

sortTree(tree, method?)

Sorts the tree array.

  • method: 'folder-az' (default), 'folder-za', 'alpha-az', 'alpha-za'.

generateAsciiTree(tree, options?)

Converts the tree array into a formatted string.

  • options.icons: Boolean. If true, adds emojis (📁/📄).

🛠️ Development (Monorepo)

This repository is organized as a Monorepo.

  • packages/core: The logic, API fetcher, and CLI tool.
  • packages/web: The Vite-based Web Application.
  • tools/: Scripts for generating SEO static pages.

Local Setup

  1. Clone:

    git clone https://github.com/mgks/GitHubTree.git
    cd GitHubTree
  2. Install:

    npm install
  3. Run Web App:

    npm run dev
  4. Build & Generate SEO Pages:

    npm run deploy

License

MIT

{ github.com/mgks }

Website Badge Sponsor Badge