1.0.0 • Published 5 years ago
lpstream-duplex v1.0.0
lpstream-duplex
lpstream-duplex provides a length-prefixed Duplex stream.
Based on:
duplexifyby mafintosh: https://github.com/mafintosh/duplexifylength-prefixed-streamby mafintosh: https://github.com/mafintosh/length-prefixed-stream
Installation
# npm
npm i lpstream-duplex
# yarn
yarn add lpstream-duplexTypescript declarations are provided.
License and Credits
Licensed under MIT. All credits go to mafinstosh, they are responsible for all the important code here.
Usage
One good use for this module would be to encode messages that will be sent over TCP, which might fragment the data. You would use lpstream-duplex around an existing net.Socket.
Some example code:
const Lpsd = require("lpstream-duplex");
const lpsd = new Lpsd(inputStream);
// It's just a Duplex stream, you know how to use it.1.0.0
5 years ago