Skip to content

Instantly share code, notes, and snippets.

@aztack
Created October 8, 2023 10:17
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 aztack/62e9d2fc889ab9134cf6f1e5708b2203 to your computer and use it in GitHub Desktop.
Save aztack/62e9d2fc889ab9134cf6f1e5708b2203 to your computer and use it in GitHub Desktop.
printProgress
import readline from 'node:readline';
function printProgress(text: string) {
readline.clearLine(process.stdout, 0);
readline.cursorTo(process.stdout, 0, undefined);
process.stdout.write(text);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment