@kantega/voog
v0.1.1
Published
Stream network visualiser
Downloads
4
Readme
Voog is a stream network visualiser written in elm.
Documentation and examples are available on our GitHub page.
Getting started
Create a div element and bind Voog to the element by its id.
<html>
<body>
<div id="main"></div>
</body>
</html>
With npm
npm install --save @kantega/voog
import {Voog} from "@kantega/voog";
const voog = Voog.init('main');
voog.send({ .. });
Pure browser
<script src="voog.js"></script>
<script>
const voog = Voog.init('main');
voog.send({ .. });
</script>