Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
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 6 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.