admin管理员组文章数量:1342918
In Node.js, we can easily use os
module (documentation) in order to obtain CPU information:
os.cpus()[0].model; // → Example: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz'
I'm looking for a similar way to obtain GPU model and if possible, specifications.
Thanks from ahead for any help!
In Node.js, we can easily use os
module (documentation) in order to obtain CPU information:
os.cpus()[0].model; // → Example: 'Intel(R) Core(TM) i7 CPU 860 @ 2.80GHz'
I'm looking for a similar way to obtain GPU model and if possible, specifications.
Thanks from ahead for any help!
Share Improve this question asked Aug 31, 2015 at 13:35 SelfishSelfish 6,2204 gold badges46 silver badges66 bronze badges2 Answers
Reset to default 12You can write a module switching the os.platform(), then execute a mand for each os to grab the GPU info, as follows:
// Mac OS:
system_profiler | grep GeForce
// Windows:
wmic path win32_VideoController get name
// Linux:
sudo lshw -C display
It is currently not possible to get GPU information from Node's os object. A possible solution would be executing the mand system_profiler SPDisplaysDataType.
In context this would look as following:
const { exec } = require("child_process");
exec("system_profiler SPDisplaysDataType", (error, stdout, stderr) => {
if (error) {
console.log(`error: ${error.message}`);
return;
}
if (stderr) {
console.log(`stderr: ${stderr}`);
return;
}
// Normalise the result here to get the GPU name
console.log(`stdout: ${stdout}`);
});
});
Note: This is specifically for Mac or darwin platform
本文标签: javascriptFinding GPU information (model) in NodejsStack Overflow
版权声明:本文标题:javascript - Finding GPU information (model) in Node.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743614362a2510513.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论