/mllp

HL7's MLLP (Minimum Lower Layer Protocol) server implementation in Node.js

Primary LanguageJavaScriptOtherNOASSERTION

mllp

HL7's MLLP (Minimum Lower Layer Protocol) server implementation in Node.js.

Listen on predefined port for HL7 messages in format:

<VT>[HL7 Message]<FS><CR>

Quick up and running guide

Prerequisites

  • Node.js (v0.10+) and NPM
  • Grunt.js
# you need Node.js and Grunt.js installed

# install dependencies and build
npm install
grunt

Usage

See example.js:

var mllp = require('mllp-node');

var server = new mllp.MLLPServer('127.0.0.1',6969);

server.on('hl7', function(data){
	console.log("just an example", data);
});

Contributing

Contributors are welcome. See issues on GitHub issues

Release Notes

See release notes [here] (./RELEASENOTES.md)

License

Licensed under Apache 2.0