Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.55 KB

README.md

File metadata and controls

44 lines (35 loc) · 1.55 KB

npm version Downloads Dependency Status Build Status MIT license GitHub issues GitHub forks GitHub stars

Getting Started

npm install tsl-umd

Example

//for v4
var UMD = require('tsl-umd');
var umd = new UMD(5001);

umd.on('message', function(tally) {
	console.log("Tally update:", tally);
);

//for v5
var UMD = require('tsl-umd');
var umd = new UMD(5001,'v5');

umd.on('message', function(tally) {
	console.log("Tally update:", tally);
);

Tested OK with

Git

Author

William Viker <[email protected]>