callgraph icon indicating copy to clipboard operation
callgraph copied to clipboard

Generate call graphs for JS projects

Results 8 callgraph issues
Sort by recently updated
recently updated
newest added

that lead to errors when parsing file with uglify

help wanted

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...

enhancement
help wanted

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...

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...

enhancement
help wanted

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...

bug
help wanted

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.

enhancement
help wanted

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!! - [...

bug