🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

pull-goodbye

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pull-goodbye

Add a goodbye handshake to a duplex pull-stream.

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
2
Created
Source

pull-goodbye

Add a goodbye handshake to a duplex pull-stream.

In a uniplex stream, the end event signifies the end of the stream. But a duplex stream, it's a little more complicated - there are two paired streams that may end independently. node's net module has an allowHalfOpen mode, but support for this method is patchy - more often, by default duplex streams are like a telephone - when one side hangs up, both streams are terminated. Humans deal with this problem by moving stream termination into the "application" layer - it's polite to say "goodbye", and to wait to receive "goodbye" before call termination.

example

given another duplex stream, wrap it with pull-goodbye. goodbye(stream, goodbye_message) takes a duplex stream and a message, (by default, the string "GOODBYE", this must be encodable whatever codec the stream uses. The codec should probably be applied outside of pull-goodbye

var goodbye = require('pull-goodbye')
var serializer = require('pull-serializer')

//a duplex stream from somewhere...
var duplex = whatever.createStream()

return serializer(goodbye(duplex, 'GoodBye'))

License

MIT

FAQs

Package last updated on 28 Feb 2022

Did you know?

Socket

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.

Install

Related posts