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 🙏

© 2025 – Pkg Stats / Ryan Hefner

novate-medviz

v2.1.0

Published

Comprehensive React library for medical anatomy visualization with 550+ anatomical structures, clinical examination points, and AI-powered natural language processing. Supports 10 anatomical views with gender-specific differences.

Downloads

10

Readme

Novate MedViz

A comprehensive React library for medical anatomy visualization with 550+ anatomical structures, clinical examination points, and AI-powered natural language processing. Supports 10 anatomical views with gender-specific differences.

Features

  • Comprehensive Anatomy Coverage: 550+ anatomical structures across multiple body systems
  • Gender-Specific Views: Male and female anatomical differences
  • Clinical Examination Points: Pre-mapped clinical examination locations
  • AI-Powered Analysis: Natural language processing for medical transcriptions
  • Multiple Views: Front, back, left side, right side, and internal organ views
  • TypeScript Support: Fully typed for better development experience
  • Customizable: Easy to integrate and customize for your needs

Installation

npm install novate-medviz
yarn add novate-medviz

Quick Start

Basic Usage

import React from 'react';
import { MedDiagram } from 'novate-medviz';

const MyMedicalApp = () => {
  const symptomData = {
    symptoms: [
      {
        name: "chest pain",
        bodyPart: "chest",
        severity: "moderate",
        coordinates: { x: 0.5, y: 0.3 }
      }
    ]
  };

  return (
    <div>
      <h1>Medical Examination</h1>
      <MedDiagram 
        data={symptomData}
        view="front"
        gender="male"
      />
    </div>
  );
};

export default MyMedicalApp;

Medical Transcription Analysis

import React, { useState } from 'react';
import { MedicalTranscriptionAnalyzer } from 'novate-medviz';

const TranscriptionAnalyzer = () => {
  const [analysis, setAnalysis] = useState(null);
  const analyzer = new MedicalTranscriptionAnalyzer();

  const handleAnalyze = () => {
    const medicalNote = "Patient complains of chest pain and shortness of breath...";
    const result = analyzer.analyzeMedicalText(medicalNote);
    setAnalysis(result);
  };

  return (
    <div>
      <button onClick={handleAnalyze}>Analyze Medical Note</button>
      {analysis && (
        <div>
          <h3>Analysis Results:</h3>
          <p>Detected symptoms: {analysis.matches.length}</p>
        </div>
      )}
    </div>
  );
};

API Reference

Components

MedDiagram

The main component for displaying anatomical diagrams with symptoms or examination points.

Props:

  • data (MedDiagramData): Symptom and examination data
  • view ('front' | 'back' | 'leftside' | 'rightside' | 'internal'): Anatomical view
  • gender ('male' | 'female'): Patient gender
  • className? (string): Additional CSS classes
  • onSymptomClick? (function): Callback for symptom interactions

Utilities

MedicalTranscriptionAnalyzer

AI-powered analyzer for processing medical transcriptions.

Methods:

  • analyzeMedicalText(text: string): AnalysisResult
  • extractSymptoms(text: string): SymptomMatch[]

Data Exports

Coordinate Systems

import { 
  bodyPartCoordinatesFront,
  bodyPartCoordinatesBack,
  bodyPartCoordinatesLeftSide,
  bodyPartCoordinatesRightSide,
  bodyPartCoordinatesInternal
} from 'novate-medviz';

Data Integration

import { mapAnatomyData, integrateCustomMapping } from 'novate-medviz';

// Map custom data to anatomy coordinates
const mappedData = mapAnatomyData(yourSymptomData);

// Integrate custom coordinate mappings
const customMapping = integrateCustomMapping(yourCustomCoordinates);

Supported Anatomical Views

  1. Front View - Complete frontal anatomy
  2. Back View - Posterior anatomy
  3. Left Side - Left lateral view
  4. Right Side - Right lateral view
  5. Internal Organs - Internal organ systems
  6. Cardiovascular & Respiratory - Specialized cardio-pulmonary view
  7. Abdominal & Inguinal - Detailed abdominal examination regions
  8. Gender-Specific Views - Male and female anatomical differences

Advanced Configuration

Custom Styling

<MedDiagram 
  data={symptomData}
  view="front"
  gender="male"
  className="custom-medical-diagram"
  style={{
    maxWidth: '600px',
    height: 'auto'
  }}
/>

Custom Coordinate Mapping

import { adaptMappingFormat } from 'novate-medviz';

const customCoordinates = {
  "custom_point": {
    name: "Custom Examination Point",
    coordinates: { x: 0.4, y: 0.6 },
    clinical: "Custom clinical significance"
  }
};

const adaptedMapping = adaptMappingFormat(customCoordinates);

Data Structure

MedDiagramData

interface MedDiagramData {
  symptoms: Symptom[];
  patientInfo?: {
    age?: number;
    gender?: 'male' | 'female';
    conditions?: string[];
  };
}

interface Symptom {
  name: string;
  bodyPart: string;
  severity?: 'mild' | 'moderate' | 'severe';
  coordinates: { x: number; y: number };
  description?: string;
  duration?: string;
}

Assets

The package includes high-quality anatomical images:

  • Male and female front/back views
  • Side profile views
  • Internal organ diagrams
  • Specialized examination views

Access assets directly:

import maleImage from 'novate-medviz/assets/malefront.png';

License

MIT License - see LICENSE file for details.

Repository

https://github.com/gbengaoluwadahunsi/novate-medviz

Keywords

react medical anatomy visualization healthcare clinical-examination medical-education typescript ai-powered medical-transcription nlp


Made with ❤️ by Novate AI for the medical community.