redhandsome / zeu

A JavaScript library for real-time visualization

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zeu.js

Build Status

Zeu.js is JavaScript library featuring a collection of prebuilt visualization components for building real-time TV dashboard, monitoring UI and IoT web interface.

Installation

From dist

<script src="zeu.min.js"></script>

Quick Start

Let's build our first Zeu component!

<!-- Include zeu.js. -->
<script src="zeu.min.js"></script>
<!-- Create a canvas. -->
<canvas id="text-meter" width="200" height="100"></canvas>
<script>
  // Create a Zeu TextMeter.
  var textMeter = new zeu.TextMeter('text-meter');
  // Update display and percentage value.
  textMeter.displayValue = 'ZEU';
  textMeter.value = 50;
</script>

text-meter

Done! Explore the Introduction page to get started.

v1.0.0

Components

My Command Center

Build

From source

npm run build

v0.9.4

The previous release can be found at v0.9.4

License

MIT

About

A JavaScript library for real-time visualization

License:MIT License


Languages

Language:JavaScript 100.0%