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>
- http://www.hl7standards.com/blog/2007/05/02/hl7-mlp-minimum-layer-protocol-defined/
- http://www.hl7standards.com/blog/2007/02/01/ack-message-original-mode-acknowledgement/
##Quick up and running quide
###Prerequisites
- Node.js (v0.10+) and NPM
- Grunt.js
# you need Node.js and Grunt.js installed
# install dependencies and build
npm install
grunt
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);
});
Contributors are welcome. See issues https://github.com/amida-tech/mllp/issues
See release notes [here] (./RELEASENOTES.md)
Licensed under Apache 2.0