I have Python scripts building json of connections map for server -> API -> Clients.
I am trying to visual that on a web page. The connections map is big, so the chart should be interactive (or not, if the lib is handling big maps well). There is some cyclic connections as well
Does anyone knows any library (I assuming JS is the most appropriate lang here) that can handle this?
Example data:
{
'Server-A': {
'API-1': ['Client-A', 'Client-B'],
'API-2': ['Client-A', 'Client-C'],
},
'Server-B': {
'API-3': ['Client-A', 'Server-A'],
'API-4': ['Server-B', 'Client-C'],
},
}
Thanks for helping.
Aucun commentaire:
Enregistrer un commentaire