Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
dgram-stream
Advanced tools
What!? a dgram stream? You're crazy.
Yep, I am.
npm install dgram-stream
Write "packets" like:
{
"to": {port: 1234}
"payload": new Buffer("my data"),
}
Get "packets" like:
{ from: { address: '127.0.0.1', family: 'IPv4', port: 55230, size: 11 },
payload: <Buffer 6d 79 20 64 61 74 61> }
Example:
var dgram = require('dgram')
var dgrams = require('dgram-stream')
// setup two (duplex) streams. use type or socket.
var one = dgrams('udp4')
var two = dgrams(dgram.createSocket('udp4'))
// bind to ports. both ways work the same.
one.sock.bind(1234)
two.bind(1235)
// data handlers
one.on('data', function(item) {
console.log('one got: ' + item)
})
two.on('data', function(item) {
console.log('two got: ' + item)
})
// try it out!
one.write({ to: { port:1235 }, payload: 'beep' })
two.write({ to: { port:1234 }, payload: 'boop' })
More at:
stdin -> udp send -> udp recv -> stdout
FAQs
udp messages as a stream of objects
The npm package dgram-stream receives a total of 3 weekly downloads. As such, dgram-stream popularity was classified as not popular.
We found that dgram-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.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.