view resources/osc/node_modules/osc-min/examples/printosc.coffee @ 295:e63d35c6ae96 prerelease

Defaulting to gcc compiler (see #1695), updates to build_pd_heavy to make it compile with the new Makefile
author Giulio Moro <giuliomoro@yahoo.it>
date Wed, 25 May 2016 00:18:37 +0100
parents fb9c28a4676b
children
line wrap: on
line source
osc = require 'osc-min'
udp = require "dgram"

if process.argv[2]?
    inport = parseInt process.argv[2]
else
    inport = 41234

console.log "OSC listener running at http://localhost:" + inport

`//~verbatim:examples[0]~
//### A simple OSC printer`
sock = udp.createSocket "udp4", (msg, rinfo) ->
    try
        console.log osc.fromBuffer msg
    catch error
        console.log "invalid OSC packet"
sock.bind inport