-
-
Save RyanNorooz/62421930de4deb52bb122f6e42eb0b0c to your computer and use it in GitHub Desktop.
Clear console/terminal in node.js the right way (preserve terminal history)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const readline = require('readline') | |
const blank = '\n'.repeat(process.stdout.rows) | |
console.log(blank) | |
readline.cursorTo(process.stdout, 0, 0) | |
readline.clearScreenDown(process.stdout) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment