New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

compact-encoding-bitfield

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

compact-encoding-bitfield

Compact codec for bitfields

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

compact-encoding-bitfield

compact-encoding codec for bitfields. Uses a variable length encoding that is ABI compatible with cenc.uint.

npm install compact-encoding-bitfield

Usage

const cenc = require('compact-encoding')
const bitfield = require('compact-encoding-bitfield')

const buffer = cenc.encode(bitfield(8), 0b1110_1011)
// <Buffer fd eb 00>

cenc.decode(bitfield(8), buffer)
// <Buffer eb>

Bitfields are represented as buffers. For each byte, the least significant bit denotes the first bit and the most significant bit denotes the last bit. For example, bit 0 will be the least significant bit of the first byte and bit 15 will be the most significant bit of the second byte.

The encoding will convert numbers to buffers. Buffers may also be passed directly and will be returned on decode.

ABI

Depending on length, the bitfield is stored using a variable number of bytes:

  • length < 8: 1 byte with no prefix.
  • length <= 16: 2 bytes with a 0xfd prefix.
  • length <= 32: 4 bytes with a 0xfe prefix.
  • length <= 64: 8 bytes with a 0xff prefix.

length must not exceed 64 bits.

License

Apache 2.0

FAQs

Package last updated on 05 May 2026

Related posts