May 25, 2019

135 words 1 min read

shzlw/zeu

shzlw/zeu

A JavaScript library for real-time visualization

repo name shzlw/zeu
repo link https://github.com/shzlw/zeu
homepage
language JavaScript
size (curr.) 23900 kB
stars (curr.) 1670
created 2018-07-10
license MIT License

Zeu.js

Build Status license: MIT npm version

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

What’s New (v1.3.1)

System 002

system-002

Installation

From dist

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

NPM

npm i zeu

CDN

<script src="https://cdn.jsdelivr.net/npm/zeu"></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

Documentation

Build

From source

npm run build

License

MIT

comments powered by Disqus