Posts

Showing posts from September, 2019

Performance Monitor using ElectronJS, Flot Chart and justgauge

Image
Hi Guys, This time I made an experimental Electron JS application to monitor the CPU Usage and Memory Usage. Hope you like it. 1) Install and Create your electron JS app using the following commands. Note : You must install nodeJS before to run these commands. > npm i -D electron@latest > mkdir electronMonitor > cd electronMonitor > npm init 2) Then create file index.html and paste the html <! DOCTYPE html > < html > < head > < meta charset = "UTF-8" > < title > Performance Monitor </ title > < script src = "Styles/flot/jquery.js" type = "text/javascript" > < / script > < link href = "Styles/css/bootstrap.min.css" rel = "stylesheet" > </ script > < script src = "Styles/js/justgage.js" type = "text/javascript" > < / script > < script src = "Styles/js/raphael-2...