Skip to content

Instantly share code, notes, and snippets.

@bntzio
Forked from timneutkens/index.js
Created April 2, 2021 08:08
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 bntzio/7d5bd183bce94356fd059ebe476104dc to your computer and use it in GitHub Desktop.
Save bntzio/7d5bd183bce94356fd059ebe476104dc 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