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

fe-explorer

v1.0.14

Published

**FE Explorer** is a powerful static analysis and visualization tool for React, Redux, and TypeScript projects. Unlike simple dependency graphs, it uses the TypeScript Compiler API to deeply understand your project's structure, type system, and data flow.

Downloads

1,336

Readme

FE Explorer

FE Explorer is a powerful static analysis and visualization tool for React, Redux, and TypeScript projects. Unlike simple dependency graphs, it uses the TypeScript Compiler API to deeply understand your project's structure, type system, and data flow.

It automatically generates an interactive, directed graph of your application's architecture—connecting Components, Actions, and Epics—allowing you to refactor, debug, and onboard developers with clarity.

🚀 Quick StartNo installation required. Run the tool directly in your project root (where your tsconfig.json is located):

npx fe-explorer

The tool will analyze your project and automatically open the web interface in your browser.


💡 Key Features

🧠 Robust Static Analysis (Backend)Leveraging the TypeScript AST and type system for precise identification:

  • React Components: Detects standard and lazy loaded components.
  • Redux Actions: Tracks usage within dispatched actions and reducers.
  • Redux-Observable Epics: Deep analysis of Epics including:
  • ofType(Action) triggers.
  • Dispatched downstream actions.
  • API Calls: Identifies HTTP methods and URLs used within streams.

🎨 Architecture Visualization

  • Sea of Nodes: Visualizes Actions, Components, and Epics.
  • Clustering: Groups nodes into Modules (Clusters) for high-level architectural views.
  • Layer Identification: Nodes are color-coded based on their architectural layer:
  • Entity
  • Service
  • Data Provider
  • Mappings
  • Component Container
  • Component View
  • Component Layout

🎮 Interactive Graph & UI

  • Focus Mode: Isolate specific nodes to view only their relevant subtree (dependencies and dependents).

  • IDE Integration: Right-click any node to open the exact file, line, and column in your preferred IDE.

  • Smart Graph Manipulation:

  • Hide/Remove: Recursively hide nodes backward or forward.

  • Restore: Restore individual nodes or reset all.

  • Noise Reduction: Option to embed generic actions (Success, Error, Trigger) directly into Epic nodes to minimize graph size.

  • Reveal: Show hidden dependencies with visual counters indicating how many connections are currently hidden.

  • Layout Engines: Switch between Top-to-Bottom or Left-to-Right layouts.

  • Grouping: Toggle module grouping on or off.

⚡ User Experience

  • State Sharing: URL synchronization allows you to share deep-links with teammates—they see exactly what you see.
  • Search: Autocomplete search to quickly find and focus on nodes.
  • Navigation: Pan, zoom, and navigate nodes using keyboard arrow keys.
  • History: Full Undo/Redo support for graph manipulations.
  • Animations: Smooth transitions and animations for auto-layout changes.
  • Context Menu: Right-click context menu for quick actions on nodes.

🛠 Tech Stack

  • Analysis: TypeScript Compiler API
  • Rendering: Graphviz (DOT)
  • Frontend: React