Is there a method for printing to the console without a trailing newline? The console object documentation doesn\'t say anything regarding that:
console
You can use process.stdout.write():
process.stdout.write()
process.stdout.write("hello: ");
See the docs for details.