Application-flow graphing. Still in early stages of development, but fully functional.
vizone flow charts can help developers quickly grasp the underpinnings of an application.
vizone
uses zone.js in order to record application flow in real-time. When vizone
patches any function, it is able to record all resulting function executions, including asynchronous events like setTimeout
callbacks.
- Install the extension: vizone devtool in the Chrome Web Store
- Open your page that you want to visualize
- Open devtools and click
vizone
tab - If
vizone
is disabled, click the enable checkbox - You should see
vizone loaded
in the console in orange - If the webpage has a library with a corresponding patch loaded into vizone, you should
also see an orange console message for that library. (If using simflux the message is
simflux-viz loaded
.) - Now every time an action occurs in the application, you will see a flow chart generated in real time.
- Once you have the plugin installed you can play with a contrived live demo.
- Or a real-worldy demo (console-logged links in this demo don't work properly)
Note: The demo will probably error out the first or second time you try loading it with the vizone devtool open. If that happens, just click the browser's reload button. (Sorry it's still pretty experimental)
When viewing a chart in the chrome extension, some nodes will be clickable. Clicking on a clickable node will log a source-code link in the console which, when clicked, will take you to the code related to that node.
If you just want to install the chrome extension, see the install section. Otherwise, to work with the latest version from the repo, follow these steps:
-
clone this repo
-
build:
npm install gulp
-
Manually Load unpacked extension (chrome://extensions/) using this repo's
devtool/
dir in chrome. -
Open your page which uses vizone
-
Open devtools and click
vizone
tab -
If
vizone
is disabled, click the enable checkbox -
Now in the console you can access the
vizone
andvizone.patch
functions
You may use simflux-viz as an example for building your own patch. However, although simflux-viz
exclusively uses the vizone
function to patch simflux, there is nothing stopping you from
using the vizone.patch
function which is a much simpler way to create a patch.
How easy is it to create a patch?. You don't even have to create a patch to create a patch. Just load up vizone, then open the console and do:
vizone.patch(myObject, 'myFunction')
That's it! Now the function myObject.myFunction(..)
is patched and every time it is executed
by your application, vizone will capture it as an application flow occurance and create a flow-chart
node for that occurrence.
(Of course if myObject
is not available on window
the above code won't
work. In fact, getting access to the objects you need to patch is one of the main challenges of
using vizone and the reason that simflux
was designed with patching in mind and thus makes the simflux
object available on window
)
Follow these guidelines when creating a patch:
- patches should access the
vizone
and/orvizone.patch
function via thewindow
scope - patches should fail silently if their host frameworks are missing
- patches should announce load success by printing colorful message to the console
- patches should detect and prevent double-loading themselves
You may develop patches without cloning this repo. Just open the vizone plugin background page (via chrome://extensions) and type the following to get a list of loaded patches:
scripts = JSON.parse(localStorage.getItem('vizone-scripts'));
Now to add your script do something like:
scripts.push('http://localhost:3000/mylib-viz-bundle.js');
localStorage.setItem('vizone-scripts', JSON.stringify(scripts));
In order for this change to take effect, close and reopen any devtool windows where you are using vizone.
The vizone chrome developer tools panel is itself a simflux application, which uses React and D3 with dagreD3 to render the view. Morearty with immutable.js is used for data binding.
Originally, simflux-viz was a standalone visualization tool for simflux. However, I subsequently broke out the visualization tool into it's own library called vizone. Now simflux-viz is completely decoupled from vizone and can easily be augmented or replaced by other vizone plugins.
- read the vizone developing section
- Optionally, you can directly include
simflux-viz-bundle.js
in your project which will ensure that all actions (including actions dispatched during application startup) are recorded. If you don't includesimflux-viz-bundle.js
it will be loaded on-the-fly directly from rawgit. - Open your page which uses vizone
- Open devtools and click
vizone
tab - If
vizone
is disabled, click the enable checkbox - You should see
simflux-viz loaded
in the console in orange - Now every time an action occurs in the application, you will see a flow chart generated in real time.
Normally when using simflux
, some registration functions are optional. However, simflux-viz
will only be able to analyse your application if you use the registration functions listed below.
dispatcher.registerStore({...})
: Register a store.dispatcher.registerActionCreator({...}
; Register an Action Creator.
By combining zone.js with the predictability of Flux architecture we can easily abstract application flow.
- This project borrowed a lot from
devtools-extension
project