ASDF-V is an interactive vector graphics tool for visualizing sequence diagrams in the Augmented Sequence Diagram Format (ASDF). Generate message-sending traces in an ASDF-compliant file and explore them visually with intuitive controls.
- View/peek additional signal information on click/hover
- Hide, unhide and reorder participants as preferred
- Filter signals by hiding participants
- Highlight active signal and relations by coloring when needed
- Emphasize special signals by coloring
- Keep visualization preferences in the browser's local storage
- Decorate signals with sequence numbers and timestamps
- Paginate large diagrams, so they render promptly
- Keep participants at the top inside view for tall diagrams
- Move around and search the diagram with Vim-like keyboard shortcuts
- Show help page with keyboard shortcut reference
- Handle diagram data exclusively locally in the browser
"Alice"->"Bob": Hey Bob, how you doin'?
~~~ { "timestamp": "2024-11-16T09:30:16.215", "srcInstanceId": "fPZKzpC", "dstInstanceId": "c9c73c34", "size": 32, "isSpecial": true }
Hello Bob, I was wondering if
you would fancy saying hi to me
~~~
note over "Bob": Hmm, wierd
~~~ { "timestamp": "2024-11-16T09:30:17.689", "srcInstanceId": "c9c73c34", "size": 0 }
~~~
"Bob"-->>"Alice": Oh, hi
~~~ { "timestamp": "2024-11-16T13:43:21.361", "srcInstanceId": "c9c73c34", "dstInstanceId": "fPZKzpC", "size": 6 }
Oh, hi
~~~
Open index.html
, choose a file of the syntax shown above
and explore the visualization.
taken from https://github.com/xsnpdngv/seqdiag-js which is a
modification of https://github.com/bramp/js-sequence-diagrams to handle
the extra syntax for additional information between tilde-triplets
(~~~
).