gpt4 book ai didi

javascript - 运行 react-scripts start 后如何停止?

转载 作者:数据小太阳 更新时间:2023-10-29 05:02:02 25 4
gpt4 key购买 nike

我用npm 开始在 package.json 中定义开始:

{
"name": "testreactapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-scripts": "1.0.10"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}

我现在想停止它,而不关闭终端。我该怎么做?

试过:npm 停止 testrectapp但这会抛出它需要脚本的错误

然后尝试:npm run stop with script "stop": "pkill --signal SIGINT testreactapp"抛出错误“pkill 不被识别为命令”

编辑

bash 中运行 ps 显示:

      PID    PPID    PGID     WINPID   TTY         UID    STIME COMMAND
6652 1 6652 6652 ? 197612 19:52:49 /usr/bin/mintty
1092 1 1092 1092 ? 197612 Jul 25 /usr/bin/mintty
11092 6652 11092 10060 pty1 197612 19:52:49 /usr/bin/bash
13868 1092 13868 992 pty0 197612 Jul 25 /usr/bin/bash
11428 13868 11428 17340 pty0 197612 12:48:27 /usr/bin/ps
11672 1092 1092 11672 ? 197612 Jul 25 /usr/bin/mintty <defunct>

在那里没有看到该应用程序?

最佳答案

点击键盘快捷键停止终端命令(通常是 Ctrl+C 或 Ctrl+Q)

或者,如果您没有该进程的输入访问权限,请识别其 PID 并将其终止:

在 Windows 上:

C:\>Taskkill /PID <PID> /F

在 Linux 上:

$>kill -SIGTERM <PID>

关于javascript - 运行 react-scripts start 后如何停止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45544145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com