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>
- 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 on GitHub issues
See release notes [here] (./RELEASENOTES.md)
Licensed under Apache 2.0