Search code examples
node.jsexpressnodemon

How to end nodemon application that doesn't show in the terminal anymore?


I'm using express.js for a web application and I forgot to end the application when my computer went to sleep. Now if I close my terminal the application is still running on port 3000 but I don't want it to run anymore. It doesn't show anywhere that it's running so I can't end it anymore.

Is there a way to end all servers that are running?

I've tried to google my situation but none of the solutions worked for me.

OS: Windows 10


Solution

  • The solution to the problem was to close the process node in the task manager and then re-running my application.

    Answered by yolenoyer in the comments.