That's actually expected behavior...
Node is waiting either for connections, or something else, depending on your code.
So, let's say your code looks like this (a simple hello world http server):
---
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
---
It actually won't throw anything to the console, it just sits and waits for connections.
If you add a line on the end of the file:
---
console.log('Server running at http://127.0.0.1:1337/');
---
It should write the message once you start your server.
Cheers!