unix-seqpacket
v1.0.3
Published
Small library to allow nodejs to open a unix domain socket of sock_seqpacket format
Downloads
6
Readme
unix-seqpacket
Add unix domain socket sock_seqpacket support to nodejs
Install
npm install unix-seqpacket
Use
const seq = require('unix-seqpacket')
const fs = require('fs')
let sock_fd = seq.open('/some/domain/socket.sock')
let read_bytes = fs.readSync(sock_fd)
// ... also can use seq.available(sock_fd) to get the number of bytes immediately available for reading
seq.close(sock_fd);