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

buffered-data-sink

v0.0.2

Published

A sink that buffers data, queues these buffers and prevents the reader from loading too much data into memory.

Downloads

7

Readme

BufferedDataSink (for NodeJS)

npm install buffered-data-sink --save

A sink for nodejs that buffers data, queues these buffers and prevents the reader from loading too much data into memory. Wow, that isn't very informative, right? So check out this example:

Consider you want to read a huge amount of data-records and store them in a database. Instead of inserting each record at a time into the database, you will probably want to wait until you collected multiple records and insert them at once. And while the database is processing your request you can continue reading more data. The next bunch of records is queued, and you keep on reading. But at some point you may want to pause reading and wait for the database to catch up.

This is what BufferedDataSink allows you to do very easily. It buffers the data you give to it and once the buffer is full, it is handed over to a handler-function to process it (for example: insert records into a database). While processing, the BufferedDataSink still accepts new data, which is put into new buffers. All these buffers are queued. If the queue limit is reached then the reader is paused so that it does not push more data to the sink. Once the queue is not full anymore the reader is resumed.

The BufferedDataSink plays nicely with node's readline:

var BufferedDataSink = require('buffered-data-sink')
  , fs = require('fs')
  , readline = require('readline')

function onDone() {
  console.log('All data read and inserted!');
}

function insertIntoDatabase(buffer, clb) {
  // Insert data-records of the buffer into the database.
  // Call clb when done.
}

var reader = readline.createInterface({ input: fs.createReadStream('some_file')})

var sink = new BufferedDataSink(reader, /*bufferSize=*/100000, /*queueLimit*/1, insertIntoDatabase, onDone)

reader.on('line', function(line) {
  var data = ... // generate some data based on the line
  sink.push(data);
});

Here we read some_file line by line using node's readline. Each line is turned into some data-record that is pushed to the sink. If we have pushed 100000 data-records, the insertIntoDatabase-function will be called with the buffer containing all the 100000 data-records. The reader continues with reading more lines. After adding another 100000 data-records the BufferedDataSink will queue the current buffer (assuming that insertIntoDatabase has not finished processing yet). Since the queueLimit is set to 1, the queue is full now. Thus BufferedDataSink will tell the reader that it should pause, so that no more lines are read. When the processing is finished, the next buffer in the queue is handed over to insertIntoDatabase. This means that we have free space in the queue and BufferedDataSink will resume the reader. Once the reader is closed the remaining (maybe not full) buffer is also queued. After all buffers were processed the callback onDone is called.

Spec for the reader

It must implement two methods: pause and resume.
Moreover it must provide the close-event.
Just like node's readline.