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

In Node.js, we can easily use os module (documentation) in order to obtain CPU information:os.cpus()[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

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743614362a4478761.html

相关推荐

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

    In Node.js, we can easily use os module (documentation) in order to obtain CPU information:os.cpus()[0]

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信