Skip to content

Instantly share code, notes, and snippets.

@constgen
Forked from timneutkens/index.js
Created April 4, 2020 07:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save constgen/4162b5f07b3b6feb9405c2153266ac09 to your computer and use it in GitHub Desktop.
Save constgen/4162b5f07b3b6feb9405c2153266ac09 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment