Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 648 Bytes

readme.md

File metadata and controls

30 lines (22 loc) · 648 Bytes

node-wmic

A Node.js wrapper around the WMIC. Transform every WMIC command output to JavaScript array.

Attention, this is the v2 version which support all WMIC command, and is not compatiable with v1 version. For 1.0.0+ version, checkout v1 branch.

var wmic = require('node-wmic');

Install

npm install node-wmic --save

Example

const wmic = require('node-wmic');
wmic.CPU().then(([cpu]) => {
  console.log(cpu.AddressWidth);
  console.log(cpu.Level);
});

wmic.DiskDrive().then(items => {
  console.log(items.length);
  console.log(items[0].Description);
});