Stream powered by Deque circular queue for blazing fast performance
npm install deque-stream
const dequeReadableStream = new DequeReadableStream({bufferSize: 16 * 4096});
// Use .write(data) to populate the read stream
dequeReadableStream.write('chunk of data');
See more detailed example at ./test.js
This project is licensed under the ISC License - see the ISC License file for details