Skip to content

automata/node-osc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

node-osc

A very basic OSC client (so far) implementation based heavily on pyOSC.

Relies on current trunk of node.js for the dgram library.

Example

Sending OSC messages:

var osc = require('osc');

var client = osc.Client(10000, '127.0.0.1');
client.sendSimple('/oscAddress', [200]);

// slightly more complex
var msg = osc.Message('/oscAddress');
msg.append(200);
msg.append(10);

client.send(msg);

Listening for OSC messages:

var osc = require('osc');

var oscServer = new osc.Server(3333, '0.0.0.0');
oscServer.on("message", function (msg, rinfo) {
  console.log("TUIO message:");
  console.log(msg);
}

Example of received TUIO (based on OSC) messages:

TUIO message:
[ [ '/tuio/2Dcur', 'alive', 3 ],
  [ '/tuio/2Dcur',
    'set',
    3,
    0.5218750238418579,
    0.3895833194255829,
    0,
    0,
    0 ],
  [ '/tuio/2Dcur', 'fseq', 2842 ] ]

TUIO message:
[ [ '/tuio/2Dcur', 'alive', 3 ],
  [ '/tuio/2Dcur',
    'set',
    3,
    0.5218750238418579,
    0.3895833194255829,
    0,
    0,
    0 ],
  [ '/tuio/2Dcur', 'fseq', 2843 ] ]

TUIO message:
[ [ '/tuio/2Dcur', 'alive' ],
  [ '/tuio/2Dcur', 'fseq', 2844 ] ]

Licensing

LGPL. Please see the file lesser.txt for details.

About

OSC protocol library for Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%