最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Finding GPU information (model) in Node.js - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 12

You 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

发布评论

评论列表(0)

  1. 暂无评论