Skip to content

omrilotan/stdline

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

stdline

💬 Update current STDOUT stream

Work on current line

const {
	update,
	end,
} = require('stdline');

console.log('processing:');
...

update('Got an update for you');
...
end('Finished!');

Clear screen

const { clear } = require('stdline');

clear();

Wipe screen

const { wipe } = require('stdline');

wipe();