Skip to content

ww9rivers/ipmitool.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ipmitool.js

A node.js wrapper of the command line IPMI utility, ipmitool, inspired by / stolen from node-ipmi.

Further documentation will be provided as the progress is made.

Below is the original README from the node-ipmi project.

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

const IPMI = require('node-ipmi');
const sensors = require('node-ipmi/lib/models/sensors');

var	options = {
	privilege: 'USER'
};

var server = new IPMI("hostname/ip", "username", "password", options);
sensors.make(server).get((err, result) => {
  console.log(sensors.getFans());
  console.log(sensors.getTemperatures());
});

About

A node.js IPMI library using ipmitool.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published