Windows OS battery information library for Node.js
npm install windows-battery
const windows = require("windows-battery");
console.log(windows.battery())
// { designcap: 37490,
// currcap: 20660,
// health: 55,
// estcharge: 93,
// ischarging: true }
- designcap - Designed (initial) capacitiy of the battery in mAh.
- currcap - Current capacity of the battery in mAh.
- health - Battery health percentage.
- estcharge - estimated current charge remaining in percentage - aka battery percentage.
- ischarging - Battery is connected to AC power supply or not.