My node.js application has a lot of console logs, which are important for me to see (it\'s quite a big app so runs for a long time and I need to know that thing
node.js
Try playing with process.stdout methods instead on console:
process.stdout.write("Hello, World"); process.stdout.clearLine(); process.stdout.cursorTo(0); process.stdout.write("\n"); // end the line