npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

stream-wrench

v1.1.0

Published

Collection of stream manipulation helpers

Downloads

9

Readme

🔧 Stream Wrench

Toolbox for stream manipulation.

StreamChopper

Implements a NodeJS Readable stream and consumes all written data.

API

const chopper = new StreamChopper();

Method: readUntil(delimiter)

const data = await chopper.readUntil(delimiter);

Reads from the input stream until the String or Buffer delimiter is found and returns all data that has been received until the occurrence of delimiter without the delimiter itself. The delimiter is also consumed.

Method: seekUntil(delimiter)

await chopper.seekUntil(delimiter);

Like readUntil() but drops all read data.

Example

Read lines from a text file:

import StreamChopper from 'stream-wrench/stream-chopper';
import {createReadStream} from 'node:fs';

// Open a text file generated by this shell call:
// echo -e "Knock knock!\nNeutrino\nHow's there?" >joke.txt
const src = createReadStream('./joke.txt');

const chopper = new StreamChopper();

src.pipe(chopper);

// Read the first line. Outputs: "Knock knock!"
const firstLine = await chopper.readUntil('\n');
console.log(firstLine.toString());

// Skip the second line.
await chopper.seekUntil('\n');

// Read the third line. Outputs: "How's there?"
const thirdLine = await chopper.readUntil('\n');
console.log(thirdLine.toString());

CircuitBreaker

API

Implements a NodeJS Transform stream which is transparent until a trigger sequence is found. Once it triggered it destroys itself.

const cb = new CircuitBreaker();

Method: setTrigger(sequences)

cb.setTrigger(sequences);

Sets the trigger sequence. Previously set sequences are overwritten.

sequences may be a Sequence or an Array of Sequence.

Sequence is a Buffer or a String or an Object with the following keys:

  • seq: Buffer or String of the trigger sequence
  • err: String with the error message that will be used if the circuit breaker triggers by the given seq

Method: protectPromise(promise)

const result = await cb.protectPromise(promise);

If the circuit breaker hasn't triggered, the settled state of promise will be transparently propagated.

Once the circuit breaker has triggered, protectPromise() will always reject.

Example

import CircuitBreaker from 'stream-wrench/circuit-breaker';

// Setup with trigger sequence 'STOP'.
// All passed data is written to console output.
// Once it triggers, it'll write the error message to the console.
const cb = new CircuitBreaker();
cb.setTrigger('STOP');
cb.on('error', (e) => console.log(e.message));
cb.pipe(process.stdout);

// Can be used to guard promises.
// It'll handle promises transparently if the circuit breaker hasn't triggered, yet.
// Outputs: 42
cb.protectPromise(Promise.resolve(42)).then(console.log);
// Outputs: 13
cb.protectPromise(Promise.reject(13)).catch(console.log);

// Prints 'Hello world!' to stdout
cb.write('Hello world!\n');
// Prints 'Found sequence: STOP' to stdout
cb.write('STOP');

// Promises can't pass the circuit breaker anymore
// Outputs: Found sequence: 'STOP'
cb.protectPromise(Promise.resolve(42)).catch((e) => console.log(e.message));
// Outputs: Found sequence: 'STOP'
cb.protectPromise(Promise.reject(13)).catch((e) => console.log(e.message));