Skip to content

Instantly share code, notes, and snippets.

@timneutkens
Last active March 4, 2024 14:01
Show Gist options
  • Star 30 You must be signed in to star a gist
  • Fork 7 You must be signed in to fork a gist
  • Save timneutkens/f2933558b8739bbf09104fb27c5c9664 to your computer and use it in GitHub Desktop.
Save timneutkens/f2933558b8739bbf09104fb27c5c9664 to your computer and use it in GitHub Desktop.
Clear console/terminal in node.js the right way
const readline = require('readline')
const blank = '\n'.repeat(process.stdout.rows)
console.log(blank)
readline.cursorTo(process.stdout, 0, 0)
readline.clearScreenDown(process.stdout)
@EdgardoRodriguezSolano
Copy link

Have you tried console.clear() ?

@pranesh239
Copy link

Have you tried console.clear() ?

it worked perfectly fine for me!

@jonathan-annett
Copy link

jonathan-annett commented Feb 19, 2020

//this also stops someone scrolling back and viewing sensitive data that may have been logged
function clearConsoleAndScrollbackBuffer() {
process.stdout.write("\u001b[3J\u001b[2J\u001b[1J");console.clear();
}

@timneutkens
Copy link
Author

@EdgardoRodriguezSolano you're not preserving history if you do that.

@Yash-Singh1
Copy link

console.clear() removes all terminal data. Not the current stdout.

@Dmitriy2020-altair
Copy link

Bravo! it works.... Professional!

@MahefaAbel
Copy link

MahefaAbel commented Mar 5, 2021

console.clear()

It doesn't work for me

const readline = require('readline')
const blank = '\n'.repeat(process.stdout.rows)
console.log(blank)
readline.cursorTo(process.stdout, 0, 0)
readline.clearScreenDown(process.stdout)

And that to

I wonder what kind of console you clear with theses approach but none of them does not works for me.

nodejs-output-console

As you can see in the image, my whole node output console still there.

@floer32
Copy link

floer32 commented Apr 13, 2021

Side note on this topic: I used the solution in the gist, but I got curious about something. I checked the source code for rollup --watch since that includes an option to clear the screen. I noticed it uses '\u001Bc' (which the beginning of @jonathon-annett's snippet above). Just noting.

@floer32
Copy link

floer32 commented Apr 13, 2021

Another note, if you're using nodemon and want to clear the console when nodemon restarts; here is a relevant tip:

This is what the nodemon events are for. You can include either a global or local nodemon.json file as per the following to do what you're after.

As per the design principles, I'd rather re-use the current tech rather than introduce new features:

{
  "events": {
    "start": "echo \"\\x1Bc\""
  }
}

It is from this thread, which has more info about portability if you must deal with Windows.

@chamberlainpi
Copy link

//this also stops someone scrolling back and viewing sensitive data that may have been logged function clearConsoleAndScrollbackBuffer() { process.stdout.write("\u001b[3J\u001b[2J\u001b[1J");console.clear(); }

Worked for me, thanks @jonathan-annett !

@wSedlacek
Copy link

wSedlacek commented Mar 4, 2024

For macOS to get the terminal to clear including scrollback I use this.

process.stdout.write('\u001Bc\u001B[3J');

It is a NodeJS compatible version of \33c\e[3J (Note: Octal escapes will throw in strict mode so they must be converted)

The sequences being used are:
ESC c - Reset to initial state
CSI 3J - Clear entire screen and delete all lines saved in the scrollback buffer

For those interested in learning the escape sequences these two resources were useful.
https://en.wikipedia.org/wiki/ANSI_escape_code
https://bjh21.me.uk/all-escapes/all-escapes.txt

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment