npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@vibepasson/vibe-native-dicom

v1.0.1

Published

React Native library for DICOM parsing and rendering on iOS and Android

Downloads

223

Readme

@vibepasson/vibe-native-dicom

Diagnostic-grade DICOM SDK for React Native — parsing, GPU-accelerated viewing, MPR, volume rendering, fusion overlays, segmentation, and the workflow primitives (cache, prefetch, hanging protocols, anonymization) that a clinical viewer needs around them.

Targets iOS and Android via TurboModules + Fabric, with C++ image decoding through a vendored GDCM 3.2.5 and Skia for GPU rendering.

npm install @vibepasson/vibe-native-dicom @shopify/react-native-skia react-native-gesture-handler

Requires React Native ≥ 0.85 with the new architecture enabled. See docs/integration/getting-started.md for host requirements (iOS 15.1, Xcode 26.x, Android NDK 27.1) and the first-slice round-trip.

At a glance

import {
  readDicom,
  extractPixelDataToFile,
  DicomImageViewSkia,
} from '@vibepasson/vibe-native-dicom';

const file = readDicom(dicomPath);
const info = extractPixelDataToFile(dicomPath, outPath);

return (
  <DicomImageViewSkia
    filePath={info.filePath}
    rows={info.rows}
    columns={info.columns}
    bitsAllocated={info.bitsAllocated}
    pixelRepresentation={file.image?.pixelRepresentation}
    photometricInterpretation={info.photometricInterpretation}
    windowCenter={128}
    windowWidth={256}
    width={512}
    height={512}
  />
);

Capabilities

  • Parse — every common transfer syntax (Implicit/Explicit VR LE, JPEG, JPEG-Lossless, JPEG-LS, JPEG 2000, RLE), SQ traversal, ergonomic per-tag helpers.
  • DICOMweb — QIDO-RS, WADO-RS, STOW-RS client.
  • 2D viewer — JS PNG path + Skia GPU path with SkSL window/level shader, pinch/pan/rotate gestures, multi-frame cine.
  • Measurement & SR — linear, angle, ROI, bidirectional, Cobb; export to DICOM Basic Text SR.
  • MPR — orthogonal axial/sagittal/coronal + oblique reformats; compressed series + non-uniform Z handled at build time.
  • Slab + volume rendering — MIP / MinIP / Average; full ray-cast with piecewise-linear TF, clip planes, Phong shading; bundled modality presets (CT bone, CT angio, MR brain).
  • Comparison & fusion — synced side-by-side viewers, fusion overlay with colormap LUTs (hot, jet, gray), segmentation label-map overlay, RTSTRUCT polyline overlay.
  • Performance & workflow — LRU pixel-data cache, series prefetcher with window-around-current priority, hanging-protocol layout engine, PS3.15 anonymization.

Every capability has an example-app panel under example/src/App.tsx.

Documentation

Status

1.0.0 — first production release. See CHANGELOG.md for what shipped and docs/regulatory/conformance-statement.md for the DICOM conformance scope.

Contributing

License

MIT