Skip to content
/ mllp Public
forked from amida-tech/mllp

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

License

Notifications You must be signed in to change notification settings

evghenin/mllp

This branch is 27 commits behind amida-tech/mllp:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c47242d · Dec 15, 2014

History

11 Commits
Dec 12, 2014
Dec 12, 2014
Dec 12, 2014
Dec 12, 2014
Dec 12, 2014
Dec 15, 2014
Dec 12, 2014
Dec 12, 2014
Nov 23, 2014
Dec 12, 2014
Dec 12, 2014
Dec 12, 2014

Repository files navigation

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%