If I have a node.js web server running with express, is there a way to get a command line? Kind of like the way the browser has a javascript console. I want to type in variables and inspect them in node.js runtime.
If I type in 'node' then it gives me a command line. but if I type in 'node server.js' that command line is not available. How can I make the command line always available (in bottom of screen) regardless of the server's state?