hyperbee-array

0.2.1 • Public • Published

Hyperbee-Array

Array built on top of hyperbee.

It tries to follow the interface of the built-in Array type where it makes sense.

Note: modify hyperbee-arrays only through this class (not directly from the hyperbee), and do not modify the same hyperbee from multiple instances of this class simultaneously. Doing so can lead to an inconsistent data structure, or unexpected behaviour.

Warning: alfa status

Install

npm i hyperbee-array

Usage

See example

API

const beeArray = new BeeArray(hyperbee, { subEncoder })

Make a new hyperbee-array instance from a Hyperbee instance.

You can pass in a subEncoder if you wish the array to live in a sub instead of in the main bee.

await beeArray.ready()

Ensure the beeArray is ready.

await beeArray.push(element)

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push

Note: currently only allows pushing a single element.

await beeArray.at(index)

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/at

const stream = beeArray.createReadStream(options)

Returns a stream over (a range of) all entries

Accepts the same options as the equivalent method in hyperbee

The most relevant are 'gt', 'lt', 'gte' and 'lte', which should be integer and indicate the index where to start and end.

Package Sidebar

Install

npm i hyperbee-array

Weekly Downloads

0

Version

0.2.1

License

MIT

Unpacked Size

11.3 kB

Total Files

7

Last publish

Collaborators

  • hdegroote