Skip to content

Instantly share code, notes, and snippets.

@nasser
Created March 16, 2018 18:02
Show Gist options
  • Save nasser/c30587731865f7f8796eb555ca98e37c to your computer and use it in GitHub Desktop.
Save nasser/c30587731865f7f8796eb555ca98e37c to your computer and use it in GitHub Desktop.
node.js OSC demo — remember to first do npm install node-osc
var osc = require('node-osc');
var client = new osc.Client('127.0.0.1', 3333);
client.send('/paddle-position', 90, function () {
client.kill();
});
var osc = require('node-osc');
var oscServer = new osc.Server(1234, '0.0.0.0');
oscServer.on("message", function (msg, rinfo) {
console.log(msg);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment