Releases: reqshark/pull-recvfrom
Releases · reqshark/pull-recvfrom
Release list
v0.0.2
v0.0.1
a source stream interface to recvfrom
const pullfrom = require('pull-recvfrom')
const recvfrom = require('recvfrom')
const sockpath = `/tmp/mysocketpath`
const sz = 99999
const pull = require('pull-stream')
pull(
pullfrom(sockpath, sz, recvfrom), // pass address and recvfrom to pullfrom()
pull.drain(console.log)
)