1. mute-stream
Bytes go in, but they don't come out (when muted).
mute-stream
Package: mute-stream
Created by: npm
Last modified: Wed, 09 Aug 2023 16:57:59 GMT
Version: 1.0.0
License: ISC
Downloads: 111,526,432
Repository: https://github.com/npm/mute-stream

Install

npm install mute-stream
yarn add mute-stream

mute-stream

Bytes go in, but they don't come out (when muted).

This is a basic pass-through stream, but when muted, the bytes are
silently dropped, rather than being passed through.

Usage

 const MuteStream = require('mute-stream')

const ms = new MuteStream(options)

ms.pipe(process.stdout)
ms.write('foo') // writes 'foo' to stdout
ms.mute()
ms.write('bar') // does not write 'bar'
ms.unmute()
ms.write('baz') // writes 'baz' to stdout

// can also be used to mute incoming data
const ms = new MuteStream
input.pipe(ms)

ms.on('data', function (c) {
  console.log('data: ' + c)
})

input.emit('data', 'foo') // logs 'foo'
ms.mute()
input.emit('data', 'bar') // does not log 'bar'
ms.unmute()
input.emit('data', 'baz') // logs 'baz'

Options

All options are optional.

  • replace Set to a string to replace each character with the
    specified string when muted. (So you can show **** instead of the
    password, for example.)

  • prompt If you are using a replacement char, and also using a
    prompt with a readline stream (as for a Password: ***** input),
    then specify what the prompt is so that backspace will work
    properly. Otherwise, pressing backspace will overwrite the prompt
    with the replacement character, which is weird.

ms.mute()

Set muted to true. Turns .write() into a no-op.

ms.unmute()

Set muted to false

ms.isTTY

True if the pipe destination is a TTY, or if the incoming pipe source is
a TTY.

Other stream methods...

The other standard readable and writable stream methods are all
available. The MuteStream object acts as a facade to its pipe source
and destination.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code