那就是我现在正在工作的项目中这样做的方式。
var exec = require('child_process').exec;function execute(command, callback){ exec(command, function(error, stdout, stderr){ callback(stdout); });};示例:检索git用户
module.exports.getGitUser = function(callback){ execute("git config --global user.name", function(name){ execute("git config --global user.email", function(email){ callback({ name: name.replace("n", ""), email: email.replace("n", "") }); }); });};


