I\'d like to use console.log() to log messages without appending a new line after each call to console.log(). Is this possible?
In NodeJS you can use process.stdout.write and you can add '\n' if you want.
console.log(msg) is equivalent to process.stdout.write(msg + '\n').
console.log(msg)
process.stdout.write(msg + '\n')