Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 531 Bytes

README.md

File metadata and controls

24 lines (15 loc) · 531 Bytes

Deque Stream ⚡

Stream powered by Deque circular queue for blazing fast performance

Installing

npm install deque-stream

Example

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

License

This project is licensed under the ISC License - see the ISC License file for details