stdin-blocker
v2.0.0
Published
A tiny library for blocking stdin keypresses, except for ctrl+c. Useful while displaying animations.
Downloads
81,991
Maintainers
Readme
Stdin Blocker
A tiny library for blocking stdin keypresses, except for ctrl+c. Useful while displaying animations.
Install
npm install --save stdin-blocker
Usage
import Blocker from 'stdin-blocker';
Blocker.isBlocked (); // => false, stdin input is not blocked
Blocker.block ();
Blocker.isBlocked (); // => true, stdin input is blocked
Blocker.unblock ();
Blocker.isBlocked (); // => false, stdin input is not blocked
Blocker.toggle ();
Blocker.isBlocked (); // => true, stdin input is blocked
License
MIT © Fabio Spampinato