Skip to content

Instantly share code, notes, and snippets.

@scwood
Last active January 13, 2018 00:27
Show Gist options
  • Select an option

  • Save scwood/7215c3a1d30c737e4cc74850c7b3512c to your computer and use it in GitHub Desktop.

Select an option

Save scwood/7215c3a1d30c737e4cc74850c7b3512c to your computer and use it in GitHub Desktop.
Clear console in JavaScript
function clearConsole() {
return process.stdout.write('\033c');
}
// run this at before app.listen() to clear console, great with tools like nodemon
// Edit: or you could use the builtin console.clear() lol
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment