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

binary-split-streams2

v2.0.0

Published

Fast, buffer-based stream splitter supporting both push and pull streams

Downloads

18

Readme

binary-split-streams2

This module is a simple streams2 implementation of a stream tokenizer. It takes a stream in, and emits the chunks between the specified delimiter, in the same way as String.prototype.split makes arrays from a string.

This module operates entirely on buffers and is implemented as a Transform stream. There are no dependencies. This could cause problems with certain delimiters depending on the character encoding of the input; be aware of this. For my purpose (splitting JSON on newlines), it will work just fine; newlines can't be embedded in UTF-8 characters.

Supported Node versions: 0.10 through latest/8.x

Build Status

Usage

var split = require('binary-split-streams2');
require('fs').createReadStream(__filename)
    .pipe(split())
    .on('data', function (chunk) {
        console.log(chunk);
    });

You can specify the empty string, '' to split between every character, just like with String.prototype.split. The default delimiter is require('os').EOL.

Truncation

As of version 1.1.0, you may specify a max size of the internal buffer. The buffer is truncated to be no greater than this size after emitting new chunks, so it is possible that this package will emit a chunk of size greater than maxBuffer when it receives that entire chunk plus the splitter in a single write. You can supply the option strictTruncation: true if you want all chunks to be forcibly truncated for you, which will guarantee that your reads will be <= maxBuffer in size.

When the buffer is truncated, the stream will emit a truncated event with the amount of bytes that were dropped. If strictTruncation is enabled, it will also emit a truncated event when a chunk it emits that would have been too long is truncated. The sum of the values passed to the truncated event and the sum of the lengths of your read chunks will equal the size of your input minus all splitters.

var split = require('binary-split-streams2');
require('fs').createReadStream(__filename)
    .pipe(split({maxBuffer: 1000, strictTruncation: true}))
    .on('data', function (chunk) {
        assert(chunk.length <= 1000);
        console.log(chunk);
    })
    .on('truncated', function (amount) {
        console.log('dropped %d bytes from the input stream', amount);
    });

Other modules

split is a useful module and more full-featured than this, but it uses through which seems to only provide old-style (streams1) streams. Streams2 streams can be lazy, and that's helpful. There is also a module called binary-split which does more or less the same thing as this module, but also uses through and seems abandoned.

binary-split makes a bit of a case for performance, so I tested this module to make sure I wasn't putting out something "worse" than that module; this module runs about 150% as fast as that one in a simple test utilizing a similar scenario to the one described there (2.4 gb file with ~ 500 byte lines, split on newline). Recent versions of binary-split have been equal to or faster than this module, however as of version 1.1.0, in node 4.0 or higher, this module is again much faster.