Stream version for reading DICOM files of [dcmjs](https://github.com/dcmjs-org/dcmjs).
npm install dcmjs-streamjs
import { DicomMessageAsync } from "dcmjs-stream";
import { readFrame } from "dcmjs-stream/readFrame";
const dataset = await DicomMessageAsync.readFile("path/to/file.dcm", {
untilTag: "7FE00010"
});
// Read the 136th frame
const frame = await readFrame(dataset.bufferStream, 136);
``