Any library for visualizing module dependencies in

2019-04-30 01:37发布

As part of a major refactoring of my Node.js app (going DDD), I'm looking for a library that through inspecting code is able to visualize module dependencies (by means of 'requiring' them) between different node-modules.

Visualizing in Table-format is fine, I don't need fancy graphs.

Any Node libraries out there?

4条回答
做个烂人
2楼-- · 2019-04-30 01:47

See also https://github.com/pahen/madge

Create graphs from your CommonJS, AMD or ES6 module dependencies. Could also be useful for finding circular dependencies in your code. Tested on Node.js and RequireJS projects. Dependencies are calculated using static code analysis.

查看更多
仙女界的扛把子
3楼-- · 2019-04-30 01:48

I do not know if this exists, but I found the following by quick search:

Maybe subdeps is not exactly what you want right now, but I think you could use these projects to make that project yourself?

查看更多
倾城 Initia
4楼-- · 2019-04-30 01:49

If you may accept also some fancy graphs: http://hughsk.github.com/colony/

查看更多
做自己的国王
5楼-- · 2019-04-30 02:03

I just published my node-dependency-visualizer, which is a small module, that creates a digraph from your node dependencies. Paired with graphviz/dot you can create a dependency graph as svg (or other image format) which you can include with your documentation, embed in your Readme.md, ...

However, it does not check, whether the dependencies are actually needed in code - not sure, whether the OP meant that with "requiring". Of course this question is old, but this tool might be helpful for others, too.

Sample image (Angluar cli):

Sample

查看更多
登录 后发表回答