stdin-blocker

A tiny library for blocking stdin keypresses, except for Ctrl+C. Useful while displaying animations.

MIT 3 个版本
安装
npm install stdin-blocker
yarn add stdin-blocker
pnpm add stdin-blocker
bun add stdin-blocker
README

Stdin Blocker

A tiny library for blocking stdin keypresses, except for Ctrl+C. Useful while displaying animations.

Install

npm install 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

版本列表
2.0.1 2025-01-12
2.0.0 2022-04-06
1.0.0 2022-02-09