callgraph
callgraph copied to clipboard
Generate call graphs for JS projects
Hi, It would be great to let specify a function in a JS file as an entry. As a workaround, I put the targeted function alone, with it's dependencies in...
This seems like the furthest along project for JavaScript call graph visualization. If there is another one you recommend over this, please let me know. Otherwise, I am running it...
Use existing .babelrc in project to compile, falling back to existing default if one does not exist
My project uses features more recent than es2015. callgraph does not support it because es2015 compilation is hardcoded. Would be great if callgraph could use my project's .babelrc directly. Thanks...
Every function _call_ is also being treated as a function _reference_. Hence, there's a duplicate. Possible solutions: - ....? - Show only "references" (but this breaks possibility of #10. no...
As of today, we're graphing both function calls (e.g. `lib.function`) and references (e.g. `var myFn = lib.function.bind(null)`) with the same black arrow. Let's use different styling please.
Currently we're just parsing whole files for function declarations. We should only try and use functions that are exported. Also, functions may be exported with a different name!! - [...