1.0.3 • Published 2 years ago

unix-seqpacket v1.0.3

Weekly downloads
-
License
CC0
Repository
github
Last release
2 years ago

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);
1.0.3

2 years ago

1.0.2

2 years ago