This content originally appeared on Level Up Coding - Medium and was authored by bitbug
Validate and visualize the dependencies of code
Preface
If we want to know if code is redundant, or dependencies have not been installed etc. We can use the dependency-cruiser to analyze the dependencies of dir or file which can be visualized by graphviz.
In this article, we will look at how to use the dependency-cruiser.
How to use dependency-cruiser
We can install dependency-cruiser globally with npm i -g dependency-cruiser (locally is recommended). Then enter in the folder of project that we want to analyze, as an illustration, we can run the follow command in formidable:
depcruise --exclude "^node_modules" --output-type html src > dependencies.html
this will generate an html file dependencies.html which looks like
The dependency-cruiser supports output many types, like html , json , dot , text etc. You can refer this article to learn other supported types.
Concert dependency-cruiser with graphviz
The dot as output type will make dependency-cruiser write a graphviz dot format directed graph. We can use graphviz to visualize it. But we have to install graphviz additaionally.
In MacOS, we can use brew to install it:
brew install graphviz
Then we can output the graph visualization:
depcruise --exclude "^node_modules" --output-type dot src | dot -T jpg > dependencies.jpg
If we can to output other format graph, replace the format type of dot -T [format] , for example, we generate a pdf file:
depcruise --exclude "^node_modules" --output-type dot src | dot -T pdf > dependencies.pdf
All of the output types that graphviz supported can refer to https://www.graphviz.org/docs/outputs/.
The main options of dependency-cruiser
Sometimes we may not care about some directory and want to exclude them. They are 4 options that can do it:
- --do-not-follow: don't cruise modules adhering to this pattern any further
- --include-only: only include modules satisfying a pattern
- --focus: show modules and their neighbours
- --exclude: exclude dependencies from being cruised
I will make some pictures help to understand this differ.
- --do-not-follow if matching this pattern, will not stop to cruise child modules.
2. --include-only only include modules satisfying a pattern, in this demo is plugins and parsers directory.
3. --focus will contain the modules and dependent or dependencies.
4. --exclude will drop the match pattern modules and their child modules.
Conclusion
In this article, we learn about how to use dependency-cruiser to analyze the dependencies of project, and we can use graphviz to make graph visualization of dependencies. dependency-cruiser supports many useful options to help us focus the modules we care about. If we want to refactor the code, this tool will be helpful.
Brief introduction of dependency-cruiser was originally published in Level Up Coding on Medium, where people are continuing the conversation by highlighting and responding to this story.
This content originally appeared on Level Up Coding - Medium and was authored by bitbug
bitbug | Sciencx (2022-10-26T02:45:03+00:00) Brief introduction of dependency-cruiser. Retrieved from https://www.scien.cx/2022/10/26/brief-introduction-of-dependency-cruiser/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.