npm start 后可以在同一个控制台上执行 运行 命令吗?
Possible to run commands after npm start on the same console?
我正在尝试 运行 Google Lighthouse 在我的 bitbucket 存储库中的管道上。在管道中,我正在 运行ning 的脚本是:
- npm install
- npm run
- <<Google Lighthouse scripts>>
但是,管道在 npm run
执行后停止。在 npm run
之后是否可以 运行 命令?
通常在 unix-systems 中(必须也是 windows 但不确定如何)你可以 运行 在后台运行一个进程:
command &
所以在你的情况下
npm run &
缺点是,您不能通过 cntrl-c 终止进程。您需要 process-id (PID) 来终止进程。假设 PID 是 12345 那么你需要做
kill 12345
我正在尝试 运行 Google Lighthouse 在我的 bitbucket 存储库中的管道上。在管道中,我正在 运行ning 的脚本是:
- npm install
- npm run
- <<Google Lighthouse scripts>>
但是,管道在 npm run
执行后停止。在 npm run
之后是否可以 运行 命令?
通常在 unix-systems 中(必须也是 windows 但不确定如何)你可以 运行 在后台运行一个进程:
command &
所以在你的情况下
npm run &
缺点是,您不能通过 cntrl-c 终止进程。您需要 process-id (PID) 来终止进程。假设 PID 是 12345 那么你需要做
kill 12345