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-as-promised
Advanced tools
This module provides promisified version of the standard
dgram class. The API is the same as for
standard dgram
, except bind
, close
and send
methods which return
Promise
object.
This module requires ES2021 with Node >= 16.
npm install dgram-as-promised
Additionally for Typescript:
npm install -D @types/node
dgram-as-promised
can be used similarly to the standard dgram
module.
Example:
import DgramAsPromised from "dgram-as-promised"
const socket = DgramAsPromised.createSocket("udp4")
const MEMBERSHIP = "224.0.0.1"
const PORT = 41234
const message = Buffer.from("ABCDEFGH")
Method bind
returns Promise
object which resolves to address info when
listening
event is emitted.
const address = await socket.bind()
console.log(`Socket is listening on ${address.address}:${address.port}`)
socket.setBroadcast(true)
socket.setMulticastTTL(128)
socket.addMembership(MEMBERSHIP)
console.log("Membership is set")
Method send
returns Promise
object which is fulfilled when the message
has been sent.
const bytes = await socket.send(message, 0, message.length, PORT, MEMBERSHIP)
console.log(`Message is sent (${bytes} bytes)`)
Method recv
returns Promise
object which resolves to the object with msg
and rinfo
properties as from message
event or resolves to undefined
when
the socket is already closed.
It throws an error if a timeout occurs and it was set by setTimeout
method.
const packet = await socket.recv()
if (packet) {
console.log(`Received message: ${packet.msg.toString()}`)
console.log(`Received ${packet.rinfo.size} bytes`)
}
Method close
returns Promise
object which resolves when close
event is
emitted or the socket is already closed.
await socket.close()
console.log("Socket is closed")
socket = socket.setTimeout(ms)
Set the timeout used by recv
method for the idle socket and after this
timeout, the recv
method will reject a Promise with a timeout error.
After the error, the socket is not closed and calling another recv
method
will reset the timeout.
The method returns this object.
Example:
socket.setTimeout(1000)
await socket.recv()
Method iterate
and the socket object returns an asynchronous iterator which
will call recv
method until the socket is closed.
for await (const packet of socket) {
console.info(packet.msg.toString())
// Close socket if Ctrl-D is in the message
if (packet.msg.indexOf(4) !== -1) {
await socket.close()
}
}
Method destroy
cleans internal listeners.
socket = socket.destroy()
The method returns this object.
Copyright (c) 2016-2024 Piotr Roszatycki mailto:piotr.roszatycki@gmail.com
FAQs
Promisify dgram module
We found that dgram-as-promised demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
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.