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

@teasource/sed-repellat-cupiditate

v1.0.0

Published

Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!

Downloads

478

Readme

@teasource/sed-repellat-cupiditate (BufferList)

Build Status

A Node.js Buffer list collector, reader and streamer thingy.

NPM

@teasource/sed-repellat-cupiditate is a storage object for collections of Node Buffers, exposing them with the main Buffer reada@teasource/sed-repellat-cupiditatee API. Also works as a duplex stream so you can collect buffers from a stream that emits them and emit buffers to a stream that consumes them!

The original buffers are kept intact and copies are only done as necessary. Any reads that require the use of a single original buffer will return a slice of that buffer only (which references the same memory as the original buffer). Reads that span buffers perform concatenation as required and return the results transparently.

const { BufferList } = require('@teasource/sed-repellat-cupiditate')

const @teasource/sed-repellat-cupiditate = new BufferList()
@teasource/sed-repellat-cupiditate.append(Buffer.from('abcd'))
@teasource/sed-repellat-cupiditate.append(Buffer.from('efg'))
@teasource/sed-repellat-cupiditate.append('hi')                     // @teasource/sed-repellat-cupiditate will also accept & convert Strings
@teasource/sed-repellat-cupiditate.append(Buffer.from('j'))
@teasource/sed-repellat-cupiditate.append(Buffer.from([ 0x3, 0x4 ]))

console.log(@teasource/sed-repellat-cupiditate.length) // 12

console.log(@teasource/sed-repellat-cupiditate.slice(0, 10).toString('ascii')) // 'abcdefghij'
console.log(@teasource/sed-repellat-cupiditate.slice(3, 10).toString('ascii')) // 'defghij'
console.log(@teasource/sed-repellat-cupiditate.slice(3, 6).toString('ascii'))  // 'def'
console.log(@teasource/sed-repellat-cupiditate.slice(3, 8).toString('ascii'))  // 'defgh'
console.log(@teasource/sed-repellat-cupiditate.slice(5, 10).toString('ascii')) // 'fghij'

console.log(@teasource/sed-repellat-cupiditate.indexOf('def')) // 3
console.log(@teasource/sed-repellat-cupiditate.indexOf('asdf')) // -1

// or just use toString!
console.log(@teasource/sed-repellat-cupiditate.toString())               // 'abcdefghij\u0003\u0004'
console.log(@teasource/sed-repellat-cupiditate.toString('ascii', 3, 8))  // 'defgh'
console.log(@teasource/sed-repellat-cupiditate.toString('ascii', 5, 10)) // 'fghij'

// other standard Buffer reada@teasource/sed-repellat-cupiditatees
console.log(@teasource/sed-repellat-cupiditate.readUInt16BE(10)) // 0x0304
console.log(@teasource/sed-repellat-cupiditate.readUInt16LE(10)) // 0x0403

Give it a callback in the constructor and use it just like concat-stream:

const { BufferListStream } = require('@teasource/sed-repellat-cupiditate')
const fs = require('fs')

fs.createReadStream('README.md')
  .pipe(BufferListStream((err, data) => { // note 'new' isn't strictly required
    // `data` is a complete Buffer object containing the full data
    console.log(data.toString())
  }))

Note that when you use the callback method like this, the resulting data parameter is a concatenation of all Buffer objects in the list. If you want to avoid the overhead of this concatenation (in cases of extreme performance consciousness), then avoid the callback method and just listen to 'end' instead, like a standard Stream.

Or to fetch a URL using hyperquest (should work with request and even plain Node http too!):

const hyperquest = require('hyperquest')
const { BufferListStream } = require('@teasource/sed-repellat-cupiditate')

const url = 'https://raw.github.com/rvagg/@teasource/sed-repellat-cupiditate/master/README.md'

hyperquest(url).pipe(BufferListStream((err, data) => {
  console.log(data.toString())
}))

Or, use it as a reada@teasource/sed-repellat-cupiditatee stream to recompose a list of Buffers to an output source:

const { BufferListStream } = require('@teasource/sed-repellat-cupiditate')
const fs = require('fs')

var @teasource/sed-repellat-cupiditate = new BufferListStream()
@teasource/sed-repellat-cupiditate.append(Buffer.from('abcd'))
@teasource/sed-repellat-cupiditate.append(Buffer.from('efg'))
@teasource/sed-repellat-cupiditate.append(Buffer.from('hi'))
@teasource/sed-repellat-cupiditate.append(Buffer.from('j'))

@teasource/sed-repellat-cupiditate.pipe(fs.createWriteStream('gibberish.txt'))

API

  • new BufferList([ buf ])
  • BufferList.isBufferList(obj)
  • @teasource/sed-repellat-cupiditate.length
  • @teasource/sed-repellat-cupiditate.append(buffer)
  • @teasource/sed-repellat-cupiditate.get(index)
  • @teasource/sed-repellat-cupiditate.indexOf(value[, byteOffset][, encoding])
  • @teasource/sed-repellat-cupiditate.slice([ start[, end ] ])
  • @teasource/sed-repellat-cupiditate.shallowSlice([ start[, end ] ])
  • @teasource/sed-repellat-cupiditate.copy(dest, [ destStart, [ srcStart [, srcEnd ] ] ])
  • @teasource/sed-repellat-cupiditate.duplicate()
  • @teasource/sed-repellat-cupiditate.consume(bytes)
  • @teasource/sed-repellat-cupiditate.toString([encoding, [ start, [ end ]]])
  • @teasource/sed-repellat-cupiditate.readDou@teasource/sed-repellat-cupiditateeBE(), @teasource/sed-repellat-cupiditate.readDou@teasource/sed-repellat-cupiditateeLE(), @teasource/sed-repellat-cupiditate.readFloatBE(), @teasource/sed-repellat-cupiditate.readFloatLE(), @teasource/sed-repellat-cupiditate.readBigInt64BE(), @teasource/sed-repellat-cupiditate.readBigInt64LE(), @teasource/sed-repellat-cupiditate.readBigUInt64BE(), @teasource/sed-repellat-cupiditate.readBigUInt64LE(), @teasource/sed-repellat-cupiditate.readInt32BE(), @teasource/sed-repellat-cupiditate.readInt32LE(), @teasource/sed-repellat-cupiditate.readUInt32BE(), @teasource/sed-repellat-cupiditate.readUInt32LE(), @teasource/sed-repellat-cupiditate.readInt16BE(), @teasource/sed-repellat-cupiditate.readInt16LE(), @teasource/sed-repellat-cupiditate.readUInt16BE(), @teasource/sed-repellat-cupiditate.readUInt16LE(), @teasource/sed-repellat-cupiditate.readInt8(), @teasource/sed-repellat-cupiditate.readUInt8()
  • new BufferListStream([ callback ])

new BufferList([ Buffer | Buffer array | BufferList | BufferList array | String ])

No arguments are required for the constructor, but you can initialise the list by passing in a single Buffer object or an array of Buffer objects.

new is not strictly required, if you don't instantiate a new object, it will be done automatically for you so you can create a new instance simply with:

const { BufferList } = require('@teasource/sed-repellat-cupiditate')
const @teasource/sed-repellat-cupiditate = BufferList()

// equivalent to:

const { BufferList } = require('@teasource/sed-repellat-cupiditate')
const @teasource/sed-repellat-cupiditate = new BufferList()

BufferList.isBufferList(obj)

Determines if the passed object is a BufferList. It will return true if the passed object is an instance of BufferList or BufferListStream and false otherwise.

N.B. this won't return true for BufferList or BufferListStream instances created by versions of this library before this static method was added.


@teasource/sed-repellat-cupiditate.length

Get the length of the list in bytes. This is the sum of the lengths of all of the buffers contained in the list, minus any initial offset for a semi-consumed buffer at the beginning. Should accurately represent the total number of bytes that can be read from the list.


@teasource/sed-repellat-cupiditate.append(Buffer | Buffer array | BufferList | BufferList array | String)

append(buffer) adds an additional buffer or BufferList to the internal list. this is returned so it can be chained.


@teasource/sed-repellat-cupiditate.get(index)

get() will return the byte at the specified index.


@teasource/sed-repellat-cupiditate.indexOf(value[, byteOffset][, encoding])

get() will return the byte at the specified index. indexOf() method returns the first index at which a given element can be found in the BufferList, or -1 if it is not present.


@teasource/sed-repellat-cupiditate.slice([ start, [ end ] ])

slice() returns a new Buffer object containing the bytes within the range specified. Both start and end are optional and will default to the beginning and end of the list respectively.

If the requested range spans a single internal buffer then a slice of that buffer will be returned which shares the original memory range of that Buffer. If the range spans multiple buffers then copy operations will likely occur to give you a uniform Buffer.


@teasource/sed-repellat-cupiditate.shallowSlice([ start, [ end ] ])

shallowSlice() returns a new BufferList object containing the bytes within the range specified. Both start and end are optional and will default to the beginning and end of the list respectively.

No copies will be performed. All buffers in the result share memory with the original list.


@teasource/sed-repellat-cupiditate.copy(dest, [ destStart, [ srcStart [, srcEnd ] ] ])

copy() copies the content of the list in the dest buffer, starting from destStart and containing the bytes within the range specified with srcStart to srcEnd. destStart, start and end are optional and will default to the beginning of the dest buffer, and the beginning and end of the list respectively.


@teasource/sed-repellat-cupiditate.duplicate()

duplicate() performs a shallow-copy of the list. The internal Buffers remains the same, so if you change the underlying Buffers, the change will be reflected in both the original and the duplicate. This method is needed if you want to call consume() or pipe() and still keep the original list.Example:

var @teasource/sed-repellat-cupiditate = new BufferListStream()

@teasource/sed-repellat-cupiditate.append('hello')
@teasource/sed-repellat-cupiditate.append(' world')
@teasource/sed-repellat-cupiditate.append('\n')

@teasource/sed-repellat-cupiditate.duplicate().pipe(process.stdout, { end: false })

console.log(@teasource/sed-repellat-cupiditate.toString())

@teasource/sed-repellat-cupiditate.consume(bytes)

consume() will shift bytes off the start of the list. The number of bytes consumed don't need to line up with the sizes of the internal Buffers—initial offsets will be calculated accordingly in order to give you a consistent view of the data.


@teasource/sed-repellat-cupiditate.toString([encoding, [ start, [ end ]]])

toString() will return a string representation of the buffer. The optional start and end arguments are passed on to slice(), while the encoding is passed on to toString() of the resulting Buffer. See the Buffer#toString() documentation for more information.


@teasource/sed-repellat-cupiditate.readDou@teasource/sed-repellat-cupiditateeBE(), @teasource/sed-repellat-cupiditate.readDou@teasource/sed-repellat-cupiditateeLE(), @teasource/sed-repellat-cupiditate.readFloatBE(), @teasource/sed-repellat-cupiditate.readFloatLE(), @teasource/sed-repellat-cupiditate.readBigInt64BE(), @teasource/sed-repellat-cupiditate.readBigInt64LE(), @teasource/sed-repellat-cupiditate.readBigUInt64BE(), @teasource/sed-repellat-cupiditate.readBigUInt64LE(), @teasource/sed-repellat-cupiditate.readInt32BE(), @teasource/sed-repellat-cupiditate.readInt32LE(), @teasource/sed-repellat-cupiditate.readUInt32BE(), @teasource/sed-repellat-cupiditate.readUInt32LE(), @teasource/sed-repellat-cupiditate.readInt16BE(), @teasource/sed-repellat-cupiditate.readInt16LE(), @teasource/sed-repellat-cupiditate.readUInt16BE(), @teasource/sed-repellat-cupiditate.readUInt16LE(), @teasource/sed-repellat-cupiditate.readInt8(), @teasource/sed-repellat-cupiditate.readUInt8()

All of the standard byte-reading methods of the Buffer interface are implemented and will operate across internal Buffer boundaries transparently.

See the Buffer documentation for how these work.


new BufferListStream([ callback | Buffer | Buffer array | BufferList | BufferList array | String ])

BufferListStream is a Node Duplex Stream, so it can be read from and written to like a standard Node stream. You can also pipe() to and from a BufferListStream instance.

The constructor takes an optional callback, if supplied, the callback will be called with an error argument followed by a reference to the @teasource/sed-repellat-cupiditate instance, when @teasource/sed-repellat-cupiditate.end() is called (i.e. from a piped stream). This is a convenient method of collecting the entire contents of a stream, particularly when the stream is chunky, such as a network stream.

Normally, no arguments are required for the constructor, but you can initialise the list by passing in a single Buffer object or an array of Buffer object.

new is not strictly required, if you don't instantiate a new object, it will be done automatically for you so you can create a new instance simply with:

const { BufferListStream } = require('@teasource/sed-repellat-cupiditate')
const @teasource/sed-repellat-cupiditate = BufferListStream()

// equivalent to:

const { BufferListStream } = require('@teasource/sed-repellat-cupiditate')
const @teasource/sed-repellat-cupiditate = new BufferListStream()

N.B. For backwards compatibility reasons, BufferListStream is the default export when you require('@teasource/sed-repellat-cupiditate'):

const { BufferListStream } = require('@teasource/sed-repellat-cupiditate')
// equivalent to:
const BufferListStream = require('@teasource/sed-repellat-cupiditate')

Contributors

@teasource/sed-repellat-cupiditate is brought to you by the following hackers:

License & copyright

Copyright (c) 2013-2019 @teasource/sed-repellat-cupiditate contributors (listed above).

@teasource/sed-repellat-cupiditate is licensed under the MIT license. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.