Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Incomplete, in progress, not fully spec compliant, but relatively tiny parse/serialize support for HL7 messages into a fairly simple to use JS format.
Incomplete, in progress, not fully spec compliant, but relatively tiny parse/serialize support for HL7 messages into a fairly simple to use JS format.
It exports two main methods parse
and serialize
and a helper function getMessages
for grabbing individual messages out of a group.
import hl7 from 'tiny-hl7'
const message = `MSH|^~\&|5.0^IBI^L|^^|DBO^IBI^L|QS4444^^|20171025213259||ACK^V01^ACK|5465156441.100178620|P|2.3.1|
MSA|AR|QS444437861000000042|Not logged in: User login failed|||207^^HL70357|
ERR|^^^207^^HL70357|
`
const parsed = hl7.parse(message)
console.log(parsed)
/*
[
{
'MSH.2': '^~\\&',
'MSH.3.1': '5.0',
'MSH.3.2': 'IBI',
'MSH.3.3': 'L',
'MSH.4.1': '',
'MSH.4.2': '',
'MSH.4.3': '',
'MSH.5.1': 'DBO',
'MSH.5.2': 'IBI',
'MSH.5.3': 'L',
'MSH.6.1': 'QS4444',
'MSH.6.2': '',
'MSH.6.3': '',
'MSH.7': '20171025213259',
'MSH.8': '',
'MSH.9.1': 'ACK',
'MSH.9.2': 'V01',
'MSH.9.3': 'ACK',
'MSH.10': '5465156441.100178620',
'MSH.11': 'P',
'MSH.12': '2.3.1',
'MSH.13': '',
},
{
'MSA.1': 'AR',
'MSA.2': 'QS444437861000000042',
'MSA.3': 'Not logged in: User login failed',
'MSA.4': '',
'MSA.5': '',
'MSA.6.1': '207',
'MSA.6.2': '',
'MSA.6.3': 'HL70357',
'MSA.7': '',
},
{
'ERR.1.1': '',
'ERR.1.2': '',
'ERR.1.3': '',
'ERR.1.4': '207',
'ERR.1.5': '',
'ERR.1.6': 'HL70357',
'ERR.2': '',
},
]
*/
const reSerialized = hl7.serialize(parsed)
console.log(reSerialized === message) // true
Here we generate an "ack" acknowledging receipt of a message by combining parse to extract values to echo back:
import hl7 from 'tiny-hl7'
import { stringify as stringifyDate } from 'hl7-date'
const generateAck = incoming => {
const messageHeader = hl7.parse(incoming)[0]
return serialize([
{
'MSH.3': messageHeader['MSH.5'],
'MSH.5': messageHeader['MSH.3'],
'MSH.7': stringifyDate(new Date(), 'minute'),
'MSH.9': 'ACK',
'MSH.10': 'ACK' + stringifyDate(new Date(), 'second'),
'MSH.11': 'P',
'MSH.12': messageHeader['MSH.12'],
},
{
'MSA.1': 'AA',
'MSA.2': messageHeader['MSH.10'],
},
])
}
npm test
1.0.7
- inlining dset
lib (including its license).1.0.3
- fixing regexp usage broken in safari1.0.2
- fixing dset import that was causing a bug in serialize1.0.1
- initial releaseFAQs
Incomplete, in progress, not fully spec compliant, but relatively tiny parse/serialize support for HL7 messages into a fairly simple to use JS format.
We found that tiny-hl7 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.