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

fastest-writable

v5.0.2

Published

Node.js Writable stream which goes at the speed of its fastest peer and ends peers which can't keep up

Downloads

39

Readme

fastest-writable   Build Status Coverage Status NPM version

Node.js Writable which goes at the speed of its fastest peer Writable and ends peers which can't keep up.

  • Alternative to readable.pipe which goes at the rate of the slowest peer.
  • Peers which aren't drained when a write occurs are ended.
  • With no peers added, fastest-writable consumes data as fast as it is written and throws it away.
  • Full set of unit tests with 100% coverage.

Example:

var stream = require('stream'),
    assert = require('assert'),
    FastestWritable = require('fastest-writable').FastestWritable,
    source = new stream.PassThrough(),
    fw = new FastestWritable(),
    dest1 = new stream.PassThrough({ highWaterMark: 1 }),
    dest2 = new stream.PassThrough({ highWaterMark: 1 });

source.pipe(fw);
fw.add_peer(dest1);
fw.add_peer(dest2);

source.write('foo');
assert.equal(dest1.read().toString(), 'foo');
source.write('bar');
// drain emitted next tick
process.nextTick(function ()
{
    assert(dest2._writableState.ended);
});

The API is described here.

Installation

npm install fastest-writable

Licence

MIT

Test

grunt test

Code Coverage

grunt coverage

c8 results are available here.

Coveralls page is here.

Lint

grunt lint

API

FastestWritable([options])

Creates a new FastestWritable object which can write to multiple peer stream.Writable objects.

Inherits from stream.Writable so you can use any Writable method or event in addition to those described here.

Parameters:

  • {Object} [options] Configuration options. This is passed onto Writable's constructor and can contain the following extra property:
    • {Boolean} [end_peers_on_finish] Whether to call writable.end on all peers when this FastestWritable object emits a finish event. Defaults to true.

    • {Boolean} [destroy_peers_on_destroy] Whether to call writable.destroy on all peers when this FastestWritable is destroyed. Defaults to true.

    • {Boolean} [emit_laggard] Whether to emit an event named laggard on any peers which can't keep up instead of ending them. Defaults to false.

Go: TOC

FastestWritable.prototype.add_peer(peer)

Add a peer Writable to the list of peers to which data will be written.

When writable.write is called on this FastestWritable object, the data is written to every peer. FastestWritable drains when at least one of its peers drains. When writable.write is called again, writable.end is called on any peer which hasn't drained from the previous writable.write call.

If this FastestWritable object has no peer Writables then it drains immediately.

Parameters:

  • {stream.Writable} peer Peer Writable to add.

Go: TOC | FastestWritable.prototype

FastestWritable.prototype.remove_peer(peer, end)

Remove a peer Writable from the list of peers to which data will be written.

Parameters:

  • {stream.Writable} peer Peer Writable to remove.
  • {Boolean} end Whether to call writable.end on the peer once it's been removed from the list. Defaults to true.

Go: TOC | FastestWritable.prototype

FastestWritable.events.empty()

empty event

A FastestWritable object emits an empty event when it has no more Writable objects in its list of peers.

Note that when a FastestWritable object is empty, it is always drained and throws any data it receives away.

You could, for example, end the FastestWritable object when empty is emitted.

Go: TOC | FastestWritable.events

FastestWritable.events.waiting(stop_waiting)

waiting event

A FastestWritable object emits a waiting event when it's waiting for any of its peers to drain.

When a peer drains, the FastestWritable object will emit a ready event. If there are no listeners for the ready event then it will emit a drain event.

Parameters:

  • {Function} stop_waiting Call this function to force the FastestWritable object to drain without waiting for any of its peers to drain. You could use this to implement a timeout, for example. It's safe to call stop_waiting more than once or even after a peer has drained of its own accord.

Go: TOC | FastestWritable.events

FastestWritable.events.ready(num_waiting, total, drain)

ready event

A FastestWritable object emits a ready event when one of its peers drains. It gives you the ability to control when the FastestWritable object emits drain.

Parameters:

  • {Integer} num_waiting Number of peers which still haven't drained for the latest data written to the FastestWritable object.
  • {Integer} total Number of peers which received the latest data written to the FastestWritable object.
  • {Function} drain Call this function to let the FastestWritble object drain without waiting for any more of its peers to drain. It's safe to call drain more than once.

Go: TOC | FastestWritable.events

FastestWritable.events.laggard(peer)

laggard event

A FastestWritable object emits a laggard event when one of its peers can't keep up, if emit_laggard was passed to the constructor. Note a laggard event is also emitted on the peer.

Parameters:

  • {stream.Writable} peer Peer Writable which can't keep up.

Go: TOC | FastestWritable.events

FastestWritable.events.peer_added(peer)

peer_added event

A FastestWritable object emits a peer_added event when a peer has been added to the list of peers to which data will be written.

Parameters:

  • {stream.Writable} peer Peer added.

Go: TOC | FastestWritable.events

FastestWritable.events.peer_removed(peer)

peer_removed event

A FastestWritable object emits a peer_removed event when a peer has been removed from the list of peers to which data will be written.

Parameters:

  • {stream.Writable} peer Peer removed.

Go: TOC | FastestWritable.events

—generated by apidox