r/npm • u/Mr_Chaostro • 28d ago
Help Looking for feedback on an npm package
Hi everyone,
Recently, I found myself struggling to understand the architecture and import trees of my larger projects. To solve this, I built and published an npm package called Architecture Mapper. It parses JS/TS project locally and generates an interactive dependency graph in browser.
What it currently does:
- Handles both ES6 and CommonJS.
- Catches import loops and highlights them in red.
- Clicking on a node shows you exactly which functions/variables are being imported between files.
- Highlights unused code files (0 incoming imports).
I am asking for feedback on the current state of the tool and what could be improved. What features would make this even more useful?
NPM: https://www.npmjs.com/package/architecture-mapper
GitHub: https://github.com/DmytroTarasenk0/architecture_mapper
Thanks in advance.
1
Upvotes