This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import util from "util"; | |
import events from "events"; | |
import dgram from "dgram"; | |
// ArtNet server class | |
const listen = function (port, cb) { | |
this.port = port; | |
events.EventEmitter.call(this); | |
// Set up the socket |
OlderNewer