Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
a very simple bitfield, compliant with the Bittorrent spec
npm install bitfield
var Bitfield = require("bitfield");
var field = new Bitfield(256); //create a bitfield with 256 bits
field.set(128); //set the 128th bit
field.set(128, true); //same as above
field.get(128); //true
field.get(200); //false (all values are initialised to `false`)
field.get(1e3); //false (out-of-bounds is also false)
field.set(128, false); //set the 128th bit to 0 again
field.buffer; //the buffer used by bitfield
Bitfield(data)
: data
can be either a node.js buffer, WebGL Int8Array or numeric array, or a number representing the maximum number of supported bytes.
Bitfield#get(index)
: Returns a boolean indicating whether the bit is set.
Bitfield#set(index[, value])
: value
defaults to true. Sets the bit to 1
for a value of true
or 0
for false
.
Bitfield(data, { grow: size })
: If you set
an index that is out-of-bounds, the Bitfield will automatically grow so that the bitfield is big enough to contain the given index, up to the given size
(in bit). If you want the Bitfield to grow indefinitely, pass Infinity
as the size.
Bitfield#buffer
: The contents of the bitfield.
Bitfield#grow
: The passed growth option (defaults to 0
).
MIT
FAQs
a simple bitfield, compliant with the BitTorrent spec
We found that bitfield demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.