Scripts in nifty_fifty_bank_nifty_NodeJS/scripts/ for local Windows development.

checkStatus.ps1

Lists running Node.js processes with memory and CPU usage. Shows listening ports related to Node.
Also referenced via npm:

killApp.ps1

Interactive script to stop all node processes:
  1. Lists processes
  2. Prompts Kill all Node.js processes? (y/n)
  3. Stop-Process -Name node -Force on confirm
Or:
This kills all Node processes on the machine, not just this app. Close other Node projects first.

When to use