
Research
/Security News
CanisterWorm: npm Publisher Compromise Deploys Backdoor Across 29+ Packages
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.
uint8arraylist
Advanced tools
Append and consume bytes using only no-copy operations
$ npm i uint8arraylist
import { Uint8ArrayList } from 'uint8arraylist'
const list = new Uint8ArrayList()
list.append(Uint8Array.from([0, 1, 2]))
list.append(Uint8Array.from([3, 4, 5]))
list.toUint8Array()
// -> Uint8Array([0, 1, 2, 3, 4, 5])
list.consume(3)
list.toUint8Array()
// -> Uint8Array([3, 4, 5])
// you can also iterate over the list
for (const buf of list) {
// ..do something with `buf`
}
list.slice(0, 1)
// -> Uint8ArrayList([0])
Borrows liberally from bl but only uses native JS types.
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
FAQs
Append and consume bytes using only no-copy operations
The npm package uint8arraylist receives a total of 103,846 weekly downloads. As such, uint8arraylist popularity was classified as popular.
We found that uint8arraylist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.

Research
/Security News
The worm-enabled campaign hit @emilgroup and @teale.io, then used an ICP canister to deliver follow-on payloads.

Research
/Security News
Attackers compromised Trivy GitHub Actions by force-updating tags to deliver malware, exposing CI/CD secrets across affected pipelines.

Security News
ENISA’s new package manager advisory outlines the dependency security practices companies will need to demonstrate as the EU’s Cyber Resilience Act begins enforcing software supply chain requirements.