是否可以从nodejs获取衍生过程的进度?

时间:2019-03-21 18:00:56

标签: javascript node.js npm npm-install child-process

我正在从npm install -g create-react-app脚本中生成js。我想知道是否可以使用spawn获得安装进度。

const npmExecutable = /^win/.test(process.platform) ? "npm.cmd" : "npm";
const npm = spawn(npmExecutable, ["install", "-g", "create-react-app"]);

我已阅读this question有关使用的信息:

npm.on("message", data => {
  console.log(`A message: ${data}`);
});

但是它什么也没显示。

关于知道python脚本的进度,有一个related question,但没有任何答案。

你们中有人尝试过类似的事情还是对此有任何线索?

0 个答案:

没有答案