Is there a (free) Visustin alternative, I need to create flowcharts from existing JavaScript code

Basically, I need to convert the existing JavaScript code into flowcharts, I tried using Code Visual for the flowchart, but it does not create flowcharts as I would like them (just showing links to various functions ...

While Visustin actually automatically separates each function.

Is there a free alternative or even cheap software?

+8
javascript flowchart
source share
1 answer

I think that converting unedited code results is useless due to too many details. I would suggest a different approach that gives very readable flowcharts. http://code2flow.com creates flowcharts from C-like (or Javascript-like) pseudocode, which can contain any natural language. Please note that I am directly involved in this decision. You should probably create a different flow chart for each important function of your code.

Example flowchart (you can click to edit) enter image description here

+3
source share

All Articles