Simple module to get your PC's battery health
Right now it supports mac and linux:
npm install healthi
Healthi works with promises since version 2.0.0:
const health = require('healthi')
const battery = await health()
console.log(battery.health) //=> 90.76078670529044
const health = require('healthi')
health()
.then(console.log) //=> { currentCapacity: 5953, originalCapacity: 6559, health: 90.76078670529044 }
.catch(console.log)
The battery
object has 3 attributes:
{
now, // Example: 5953 mAh
original, // Example: 6559 mAh
health // Example: 90.7 % (this is the current capacity compared to the original one)
}
Feel free to open an issue or a pull request
© 2017 Pablo Varela |