How to do horizontal split of the console in nodejs output

Viewed 755

How can I keep doing console.log that scrolls, but keep one line at the bottom of the console to show the general progress, similar to the image below?

enter image description here

1 Answers

I was able to use npm's blessed library to get to what I want. I uploaded a demo here, however, it was rather slow.

Alternatively, I created another package called log-with-statusbar that does the job but it is much more light weight.

enter image description here

Related