

This project is part of the
@thi.ng/umbrella monorepo.
About
ES6 iterator based read/write bit streams with support for variable word widths.
Status
STABLE - used in production
Search or submit any issues for this package
Related packages
Installation
yarn add @thi.ng/bitstream
ES module import:
<script type="module" src="https://cdn.skypack.dev/@thi.ng/bitstream"></script>
Skypack documentation
For Node.js REPL:
# with flag only for < v16
node --experimental-repl-await
> const bitstream = await import("@thi.ng/bitstream");
Package sizes (gzipped, pre-treeshake): ESM: 1.10 KB
Dependencies
API
Generated API docs
BitOutputStream
Uint8Array backed, bitwise output stream abstraction (big endian
order). Individual word sizes can range between 1-52 bits (in practice)
and are not fixed (each word can have a different size).
The constructor accepts an optional initial Uint8Array buffer or
buffer size (in bytes) and an optional write start position (in
bits). The buffer will only be written to starting from the given bit
position (even if in the middle of a byte). Default buffer size is 16
bytes, but the array is resized (x2) automatically each time capacity is
reached.
Note: The max. word size of 52 bits is not enforced by the library,
but JS can only represent integers (w/o loss of precision) up to
2^53-1. If you're willing to accept lossy precision for larger values,
technically the max. supported word width is 64 bits.
out = new BitOutputStream();
out.write(0xf5, 3);
out.write(0x66, 7);
out.write(0xdecafbad, 32);
out.writeWords([0xaaaa, 0x5555], 16);
out.bytes()
In addition to the generic write() method, there's also the slightly
faster writeBit() for writing single bits (the arg MUST be 0 or 1
only).
Using seek(pos), the write position can be repositioned within current
limits (does not attempt to resize backing buffer).
BitInputStream
Uint8Array backed bitwise input stream abstraction (big endian order)
with optional start position and read limit (both in bits). All
readers are independent instances, but if obtained from
BitOutputStream will share the same backing buffer as the writer. An
auto-configured input stream can also be obtained via output.reader().
The class too implements the ES6 Iterator API for bitwise read
access, as well as a read() method to read bitfields.
Note: Attempting to read beyond capacity will throw an EOF error.
Using input.seek(pos), the read position can be repositioned within
stream limits.
[...out.reader()].join("")
input = out.reader();
out.reader().readFields([3, 7, 32, 16, 16]).map(x => x.toString(16))
out.reader().readStruct([["a", 3], ["b", 7], ["c", 32], ["d", 16], ["e", 16]]);
out.reader().seek(10).readWords(4, 16).map(x=>x.toString(16));
src = new Uint8Array([0xf1,0xe2,0xd3,0xc4,0xb5,0xa6,0x97,0x88]);
input = new BitInputStream(src, 36);
input.read(12).toString(16);
input.read(4)
input.read(4)
input.read(1)
input.read(7)
In addition to the generic read() method, there's also the slightly
faster readBit() for reading single bits.
Authors
Karsten Schmidt
If this project contributes to an academic publication, please cite it as:
@misc{thing-bitstream,
title = "@thi.ng/bitstream",
author = "Karsten Schmidt",
note = "https://thi.ng/bitstream",
year = 2016
}
License
© 2016 - 2021 Karsten Schmidt // Apache Software License 2.0