使用Angular-Cli构建我的项目时,我直接在终端窗口中使用它,如下所示:
$ ng build
现在我想使用spawn从nodejs
运行它。然而,
const spawn = require('child_process').spawn;
const bld = spawn("ng build");
抛出:
child process has an error with code Error: spawn ng build ENOENT
child process exited with code -2
为什么会这样? (我在同一个文件夹中运行所有内容。)
答案 0 :(得分:3)