I am running a very simple node code and I'm not using any other project, every time im running node server.js i got this error : Error: listen EADDRINUSE: address already in use :::5000 But at the same time im not using any other project or server
const express = require("express");
const app = express();
app.listen(5000, () => {
console.log("Server has started on port 5000");
});