1.1.1 • Published 3 years ago

stdline v1.1.1

Weekly downloads
12
License
MIT
Repository
github
Last release
3 years ago

stdline npm.io npm.io

💬 Update current STDOUT stream

npm.io

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();