One Hat Cyber Team
Your IP :
10.30.1.1
Server IP :
103.148.201.5
Server :
Linux web-olt 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64
Server Software :
Apache/2.4.52 (Ubuntu)
PHP Version :
8.1.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
9611
/
root
/
usr
/
share
/
nodejs
/
gauge
/
lib
/
Edit File:
demo.js
var Gauge = require('./') var gaugeDefault = require('./themes.js') var onExit = require('signal-exit') var activeGauge onExit(function () { activeGauge.disable() }) var themes = gaugeDefault.getThemeNames() nextBar() function nextBar () { var themeName = themes.shift() console.log('Demoing output for ' + themeName) var gt = new Gauge(process.stderr, { updateInterval: 50, theme: themeName, cleanupOnExit: false, }) activeGauge = gt var progress = 0 var cnt = 0 var pulse = setInterval(function () { gt.pulse('this is a thing that happened ' + (++cnt)) }, 110) var prog = setInterval(function () { progress += 0.04 gt.show(themeName + ':' + Math.round(progress * 1000), progress) if (progress >= 1) { clearInterval(prog) clearInterval(pulse) gt.disable() if (themes.length) { nextBar() } } }, 100) gt.show() }
Simpan