I have a simple server running in node.js using connect:
var server = require('connect').createServer();
//actions...
server.listen(3000);
In my code I have actual route handlers, but that's the basic idea. The error I keep getting is:
EADDRINUSE, Address already in use
I receive this error when running my application again after it previously crashed or errors. Since I am not opening a new instance of terminal I close out the process with ctrl + z.
I am fairly certain all I have to do is close out the server or connection. I tried calling server.close() in process.on('exit', ...); with no luck.










Ctrl + zyou should useCtrl + cwhich will close the program correctly by sending SIGQUIT :) See the wiki for further details :)pkill nodejsorpkill nodeif on UNIX-like OS