I have a node.js application with about 10 direct dependencies that result in 50 dependencies.
Now I would like to know if any of these dependencies uses native code (except, of course, the node.js platform itself), for example, external system libraries (I saw libxml used in other projects), native C / C + libraries +, node -gyp script scripts that need compilers, etc. etc.
Is there an easy / quick way to check the entire dependency tree of a given module for such cases?
source
share