How stop after running react-scripts start? How stop after running react-scripts start? reactjs reactjs

How stop after running react-scripts start?


Hit your keyboard shortcut for stopping terminal commands (usually Ctrl+C or Ctrl+Q)

Or, if you don't have input access to the process, identify its PID and kill it :

On Windows :

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

On Linux :

$>kill -SIGTERM <PID>


Add this in your package.json:

"stop": "taskkill -F -IM node.exe"


Hitting Ctrl + C will stop the running app after you provide an answer as Y as it asks; No need to close your terminal.