我正在从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,但没有任何答案。
你们中有人尝试过类似的事情还是对此有任何线索?