
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
delimited-stream
Advanced tools
A Node.js Transform stream emitting buffered data at each delimiter instance.
Buffered data, delimiter excluded, is emitted each time the delimiter is encountered.
The constructor requires a Buffer instance or string value representing the delimiter.
const stream = new DelimitedStream (delimiter)
Instantiate a stream with a newline sequence as the delimiter.
const delimiter = Buffer.from ("\r\n")
const stream = new DelimitedStream (delimiter)
stream.on ('data', (data) => {
const line = data.toString ('utf8')
// do stuff
})
FAQs
Moved to @sovpro/delimited-stream
The npm package delimited-stream receives a total of 1 weekly downloads. As such, delimited-stream popularity was classified as not popular.
We found that delimited-stream 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
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.