JavaScript bitset

const BitSet = require('bitset');

let bs = new BitSet;
bs.set(128, 1); // Set bit at position 128
console.log(bs.toString(16)); // Print out a hex dump with one bit set
Homely Heroin