node-unix-dgram icon indicating copy to clipboard operation
node-unix-dgram copied to clipboard

unix datagram support for node.js

Results 6 node-unix-dgram issues
Sort by recently updated
recently updated
newest added

I noticed the package has the dummy logic for Windows as there wasn't support for Datagrams over UDS. But I was wondering if given the recent support for AF_UNIX and...

I'm using a project (winston-syslog) with unix-dgram as a sub-dependecy. Recently it has started failing to build with the following error. All the build tools needed should be in place,...

I'm working on a project that uses unix_dgram. My app sends data to a Unix socket. I'm using `unix_dgram` to create the socket and read the incoming messages. From within...

Hi, I'm currently using node-unix-dgram to implement systemd service notification support for javascript and ran into the problem that systemd can use abstract namespace sockets instead of filesystem based ones....

When something other than an instance of `Buffer` is sent to the `send*` methods an assertion fails causing node to coredump. It seems more reasonable to throw `TypeError` instead. ```...

I'm studying how to modify this module to support other protocol families apart from `AF_UNIX` while still using `SOCK_DGRAM`. I have 2 options: 1) copy most of the code from...