Download Gauge.min.js ((full)) May 2026
: It works as a standalone library but is also compatible with jQuery if your project already uses it.
: For faster integration without hosting the file yourself, you can link to it via cdnjs or jsDelivr . Use the following script tag in your HTML: Use code with caution.
The gauge.min.js file is the lightweight, minified distribution of , a popular JavaScript library used to create highly customizable, animated gauges on HTML5 canvas. It is frequently chosen by developers for dashboards and IoT interfaces because it is 100% native, has zero external dependencies, and is resolution-independent. How to Download and Install gauge.min.js download gauge.min.js
: If you are using a modern build tool (like Webpack or Vite), install it via terminal: npm install gaugeJS . Key Features of Gauge.js
var opts = { angle: 0.15, lineWidth: 0.44, radiusScale: 1, pointer: { length: 0.6, strokeWidth: 0.035, color: '#000000' }, limitMax: false, limitMin: false, colorStart: '#6FADCF', colorStop: '#8FC0DA', strokeColor: '#E0E0E0', generateGradient: true, highDpiSupport: true, }; var target = document.getElementById('foo'); // your canvas element var gauge = new Gauge(target).setOptions(opts); gauge.maxValue = 3000; gauge.set(1250); // set actual value Use code with caution. Note on Similar Libraries : It works as a standalone library but
Once you have linked gauge.min.js , you can initialize a basic gauge with just a few lines of code: javascript
: Download the latest release directly from the bernii/gauge.js GitHub repository . This is the most secure way to get the source code and the production-ready minified file. The gauge
: No images or external CSS are required, making it extremely fast and easy to style via JavaScript.