Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (14 loc) · 598 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 598 Bytes

node-ipmi.js

NPM version

node-ipmi is a commandline wrapper from ipmitool. It is designed to be used via Node.js and installable via:
npm install node-ipmi.

PLEASE NOTE: node-ipmi currently only supports sensors.

Quick Example

var Connect = require('node-ipmi');

var server = new Connect("hostname/ip", "username", "password");
server.getSensors(function(err, sensors) {
  console.log(sensors.getFans());
  console.log(sensors.getTemperatures());
};