What are the open source alternatives to Lattix?

后端 未结 7 2458
梦谈多话
梦谈多话 2020-12-16 02:48

I have gotten the opportunity to work with Lattix in the past. I believe the paradigm it represents (a hierarchical dependency matrix) is the future of large-scale system a

7条回答
  •  情深已故
    2020-12-16 03:16

    For a simple project, I found MaDGe - Module Dependency Graph.

    Install with npm

    npm -g install madge
    

    List dependencies of all *.js files in directory src

    madge path/src 
    

    Find circular dependencies of a particular file app.js

    madge --circular path/src/app.js
    

    There's also a graphing functionality, but I don't have that up and running yet.

提交回复
热议问题