This package provides an easy mechanism to read the first chunk in a readable stream. It returns a promise which will be resolved with the chunk (either a Buffer
or a string
), or null
if the stream was ended. It rejects the promise if an error occured on the stream.
- Since v2 this is a pure ESM package, and requires Node.js >=12.20. It cannot be used from CommonJS.
If importing using TypeScript or ES6 modules:
import nextChunk from 'next-chunk'
const readable = getSomeReadableStream( );
const firstChunk = await nextChunk( readable );
const secondChunk = await nextChunk( readable );
// ... eventually the stream may end, we get
const endedChunk = await nextChunk( readable );
const againChunk = await nextChunk( readable );
// These chunks contain buffers or strings
expect( firstChunk ).to.not.be.null;
expect( secondChunk ).to.not.be.null;
// These are all null
expect( endedChunk ).to.be.null;
expect( againChunk ).to.be.null;