Zeu.js is a JavaScript library containing a series of pre-built visual components for building real-time TV dashboards, monitoring UIs, and Internet of Things Web interfaces.

The installation

From dist

<script src="zeu.min.js"></script>
Copy the code

Using the tutorial

Quickly create a text dashboard

<! -- 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>
Copy the code

It’s that simple!

More Components

My Command Center

The document

The development of

From source

npm run build
Copy the code

Open source

MIT