gpt4 book ai didi

node.js - 为什么 Node.js Scaling 可以在 Linux 上运行,但不能在 Windows 上运行?

转载 作者:太空宇宙 更新时间:2023-11-04 12:05:45 26 4
gpt4 key购买 nike

学习 Node 并坚持这个例子:

// Adding child_process from the Node build-in Module:
let exec = require("child_process").exec;
// Requesting time:
let child = exec("uptime", function(err, stdout, stderr){
if (err) {
console.log("Error: " + stderr);
} else {
console.log("Output is: " + stdout);
}
});
console.log("PID is: " + child.pid);

有人能解释一下,为什么这段代码在 Linux 而不是在 Windows 中运行。抱歉,这可能是个愚蠢的问题,但我是新手,目前正在学习 Node.js。附言抱歉,如果我的问题不正确,我仍然习惯在这里发布问题。提前致谢!

最佳答案

我认为 uptime 不是 windows 命令。它只适用于 Linux你可以使用

systeminfo | find "Boot Time"

代替正常运行时间。喜欢

exec('systeminfo | find "Boot Time"')

关于node.js - 为什么 Node.js Scaling 可以在 Linux 上运行,但不能在 Windows 上运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50800933/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com