gpu-info
v0.0.1
Published
Get system GPU information.
Downloads
145
Readme
gpu-info
Provides nodejs with information about the system's GPUs.
Currently only supports gpu detection on Windows.
Usage
Returns an array of GPUs.
const gpuInfo = require('gpu-info');
gpuInfo().then(function(data) {
console.log('GPUS:', data);
});