4

我正在为(LinkNode.js )使用模块gmGithub)。GraphicsMagic

如何确定模块所需的GraphicsMagic软件是否已在当前 node.js 机器上安装并功能齐全?(我想在我的服务器的初始化过程中检查这个)gm

4

1 回答 1

7

您可以调用命令行工具并检查输出。

var exec = require('child_process').exec;

exec("gm", function (error, stdout, stderr) {
  // Validate the output with one of the parameters.
});
于 2013-06-07T06:47:45.080 回答