A library to separate stdin and stdout in a NodeJS terminal
npm install @extremeexploit/inputboxA library that allows you to use both stdin and stdout without worrying about them overlapping
js
import inputBox from '@extremeexploit/inputbox';function ibHandler(str) {
ib.log('Got the line ' + str);
}
const ib = new inputBox('> ', ibHandler);
// Log example output
setInterval(() => {
ib.log("just displaying some stuff");
}, 1000);
``