-
-
Save 19h/4990953 to your computer and use it in GitHub Desktop.
console.reset = function () { | |
return process.stdout.write('\033c'); | |
} |
The below is better, because it clears also scroll-back buffer
process.stdout.write('\033c\033[3J');
http://man7.org/linux/man-pages/man4/console_codes.4.html
ESC [ 3 J: erase whole display including scroll-back buffer (since Linux 3.0).
@DesignByOnyx's answer works on Ubuntu bash on Windows 10.
work on MacOS Mojave
Node 5 strict mode requires this, which is the same as jimmywarting's answer but it also resets the cursor:
process.stdout.write('\x1B[2J\x1B[0f');
Thanks, its work on windows 10
The combinations
Ctrl + L
reset the full log.Ctrl + L to clear screen - https://unix.stackexchange.com/questions/104094/is-there-any-way-to-enable-ctrll-to-clear-screen-when-set-o-vi-is-set
thanks
Thank you.
If anyone is wondering when/how to call the function, the following is working for me :
app.listen(process.env.PORT || 3000,function (){
process.stdout.write('\033c');
}
since app.listen accepts a callback method, hope this helps someone ! :)
Thank you @TemaSM, its beautiful
Works on macOS Big Sur 😸
console.clear()
does the trick without having to use keyboard shortcuts every time you run your js files