UNPKG

@dotbase/hl7-v2-message

Version:

Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable.

36 lines (28 loc) 1.37 kB
# hl7-v2-message Parses HL7 v2.x messages into typed javascript objects and makes them easily accessable. ## Installation ```sh npm install @dotbase/hl7-v2-message ``` ## How to use it ```ts import { v2_5 } from "@dotbase/hl7-v2-message" type MDM_T02_Message = typeof v2_5.messages.MDM_T02_Message.prototype; const hl7Message:string = `MSH|^~\&|CARDDAS|HZL|DOC|ADT|20050524163405||MDM^T02^MDM_T02|123456|T|2.5^DEU&&HL70399|||AL|NE|DEU|8859/1|||v70^^2.16.840.1.1.13883.2.6^ISO\nEVN||20050524163405|||||B1\nPID|||79471^^^Alpha-Krankenhaus^PI ||Müller^Hans^^^^^L\nPV1|||||||||||||||||||79237645^^^Alpha-Krankenhaus^VN |||||||||||||||||||||||||20040805\nTXA||transferReport|text/plain|||20040806|||37542341^Wohlfart^Peter^^^Dr.^^^^^^^L^HZL|||7952871424^^37459732765491768364593264738293^SHA-1||||Note01.txt^CARDDAS|AU|U|AV|||^Herzog^Reinhold^^^Prof.^^^^^^^L^HZL^20040807200200\nOBX|1|ED|^Document Content|1|^text/plain^^Base64^VGhpcyBpcyBhbiBleGFtcGxlIERvY3VtZW50Lg==||||||F`; const parsedMessage = v2_5.parser.parse(hl7Message) as MDM_T02_Message; const pidSegment = parsedMessage.segments.PID.value[0]; const patientName = pidSegment.fields.PID_5; ``` ```ts console.log(patientName); // --- OUTPUT --- { index: 4, identifier: 'PID_5', description: 'Patient Name', length: 250, isOptional: false, isRepeatable: false, value: 'Müller^Hans^^^^^L' } ```