Gathering detailed insights and metrics for bitwriter
Gathering detailed insights and metrics for bitwriter
Gathering detailed insights and metrics for bitwriter
Gathering detailed insights and metrics for bitwriter
npm install bitwriter
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
3 Stars
118 Commits
2 Forks
2 Watching
1 Branches
2 Contributors
Updated on 13 Aug 2019
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
22.2%
11
Compared to previous day
Last week
-22.9%
27
Compared to previous week
Last month
-53.8%
3,433
Compared to previous month
Last year
-0.6%
90,303
Compared to previous year
A better interface for writing bytes to a buffer with a priority on safety.
1$ npm install bitwriter
1$ npm test
1var BitWriter = require('bitwriter');
BitWriter
Inherits from Buffer
, so you get all of the buffer methods
(fill
, slice
, copy
, etc) as well. You can also use Buffer.concat
with instances.
1var buf = BitWriter(4); 2buf.inspect(); // <BitWriter 00 00 00 00> 3 4// or if you need a little endian writer 5buf = BitWriter(4, 'LE');
@see BitWriter#writeInt
You can also specify an array of integers or objects representing
integers. Uses BitWriter#writeInt
internally.
1var buf = BitWriter([ 1, 2, 64738, 23 ]); 2buf.out(); // <Buffer 01 02 fc e2 17> 3 4var obuf = BitWriter([ 1, 2, 64738, { value: 23, width: 16 } ]); 5obuf.out(); // <Buffer 01 02 fc e2 00 17>
@returns this
@see BitWriter#writeInt
@see BitWriter#writeString
@see BitWriter#writeRaw
Make some assumptions and does its best to figure out what type of data you're writing and how large that data is, then delegates to one of the write methods below.
@returns {Buffer}
Returns reference to internal buffer.
@returns this
@throws TypeError
@throws RangeError
@see BitWriter#write8
@see Buffer#copy
Takes an array-like object and iterates through it, writing raw bytes to the buffer.
Arrays are type-checked to be byte arrays and range-checked for values between [0, 255].
Delegates to Buffer#copy
if given a buffer, which skips type checks
and is generally way more efficient.
1var buf = BitWriter(8); 2buf.write([0xff, 0xdd, 0xaa, 0xbb]); // <BitWriter ff dd aa bb 00 00 00 00> 3buf.write(Buffer('helo')); // <BitWriter ff dd aa bb 68 65 6c 6f>
If opts.safe
is true
, will skip type checks which is a bit more efficient
since it will only iterate over the array once, but can be dangerous
with unknown data.
Throws TypeError
if the array contains any non-numeric values.
Throws RangeError
if any values are outside the eight bit range.
@returns this
@throws OverflowError
Writes a string to the buffer. By default, a single 0x00
will be added
after the string if there is room left in the buffer.
1var buf = BitWriter(7); 2buf.write('hey'); // <BitWriter 68 65 79 00 00 00 00> 3buf.write('sup'); // <BitWriter 68 65 79 00 73 75 70>
If you don't want to write a null byte, you can pass an { null: false }
1var buf = BitWriter(6); 2buf.write('hey', { null: false }); // <BitWriter 68 65 79 00 00 00 > 3buf.write('sup'); // <BitWriter 68 65 79 73 75 70>
If you have a specific amount of bytes you need to fit a string into,
you can use { size: <int> }
. This will either truncate the string to
fit, or pad the right side with 0x00
.
1var buf = BitWriter(4); 2buf.write('hey this string is way too long!', { size: 4 }); 3buf.inspect(); // <BitWriter 68 65 79 20>
Throws OverflowError
if there are less than string.length
bytes left
in the buffer.
@returns this
@throws RangeError
@throws TypeError
@throws OverflowError
@throws DispatchError
size
: specify integer sizewidth
: alias for sizeWrites an integer to the buffer, testing against the maximum and minimum values 8, 16 and 32 bit numbers, both signed and unsigned, to figure out how best to store your bytes.
If a single object is passed, tries to find the integer value from opts.value
.
Unsigned integers
1var buf = BitWriter(8); 2buf.write(128); //<BitWriter 80 00 00 00 00 00 00 00>
Signed integers
1buf.write(-1); // <BitWriter 80 ff 00 00 00 00 00 00>
16 bits
1buf.write(61453); // <BitWriter 80 ff f0 0d 00 00 00 00>
32 bits
1buf.write(262254561); // <BitWriter 80 ff f0 0d 0f a1 af e1>
If you have a number that fits in 8 bytes but you need to store it in a larger size, you can specify that:
1var buf = BitWriter(4); 2buf.write(-128, { size: 32 }); // <BitWriter ff ff ff 80>
Returns this
so you can chain a bunch of writes:
1var output = BitWriter(4); 2output 3 .write(0x01) 4 .write(0x02) 5 .write(0x03) 6 .write(0x04); // <BitWriter 01 02 03 04>
Throws TypeError
if it gets a string that is not completely composed
of digits.
Throws RangeError
an invalid size
option is given. Valid sizes can
be found in the constant BitWriter.INT_SIZES
(currently
[8, 16, 32]
).
Throws RangeError
if the value is less than the minimum value of a
32 bit signed integer or the maximum value of a 32 bit unsigned
integer. These values can be found in BitWriter.MAX_VALUE
and
BitWriter.MIN_VALUE
Throws OverflowError
when attempting to write more bytes than are
available in the buffer.
Throws DispatchError
if it can't figure out what to do with a value.
Convenience for BitWriter#write(integer, { size: 8 })
Convenience for BitWriter#write(integer, { size: 16 })
Convenience for BitWriter#write(integer, { size: 32 })
@returns {Integer[0,255] | Undefined}
@throws RangeError
Exactly like array accessing a Buffer
with one difference: this will
throw RangeError
if the value is less than -128 or greater than 255
Accessing a position < 0 or > length - 1
will return undefined.
@returns this
.
Resets the internal cursor to position 0 and fills the buffer with 0x00
.
@returns {Integer}
Returns the position of the internal cursor
@returns this
@throws RangeError
@throws TypeError
Sets the position of the internal cursor. Value be between [0, length-1]
Throws RangeError
if position is out of bounds.
Throws TypeError
if input is not a number.
@returns this
@see BitWriter#position
Move the cursor a relative amount from where it is. Uses BitWriter#position
internally.
1var buf = BitWriter(4); 2buf.write(0x3d); 3buf.position(); // 1 4buf.move(-1); 5buf.position(); // 0 6buf.move(+3) 7buf.position(); // 3 8 9buf.move(+10); // throw RangeError
@returns object
This attachs hard this
-bound versions of the write*
methods to another object.
1var meta = BitWriter(16).attach({ 2 name: 'SomeThing', 3 widgets: [], 4}, 'data'); 5 6meta.write('widget co'); 7meta.write32(0xff); 8meta.data.inspect(); // <BitWriter 77 69 64 67 65 74 20 63 6f 00 00 00 ff 00 00 00>
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/28 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More