我正在使用Node.js
模块gm
Github)来GraphicsMagic
(Link)。
如何确定是否安装了GraphicsMagic
模块所需的gm
软件&当前node.js机器上是否具有完整功能? (我想在我的服务器的初始化过程中检查这个)
答案 0 :(得分:7)
您可以调用命令行工具并检查输出。
var exec = require('child_process').exec;
exec("gm", function (error, stdout, stderr) {
// Validate the output with one of the parameters.
});