I'm writing a console application with Node.js. Think about it like a "tail -f" of some sort of file, but where you can also enter some "commands" which will act over the list.
A two windows console application: the top one with an unattended scrolling of rows, and the second one where I can enter text with the help of Readline.
Do you think I need ncurses or is there could be another - even more low level - way to directly address the screen (oh man, I remember the Int21h of DOS memories)?
Edit: I published the application: https://github.com/claudioc/jecho (still no "windows"... I just try to be smart about the \n :))