restart node js server windows

Check out nodemon
A tool that helps develop node.js based applications by automatically restarting
the node application when file changes in the directory are detected.

Install it using "npm install nodemon".
Simply use "nodemon server.js" if server.js is the file you're working on.
Alien0w0