evghenin / mllp

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 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

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 https://github.com/amida-tech/mllp/issues

Release Notes

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

License

Licensed under Apache 2.0

About

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

License:Other


Languages

Language:JavaScript 100.0%