- Install node.js if you haven't already. This has been tested with v0.10.25.
- Run 'npm install wekinator'.
- Run 'node wek2ws.js'
Add the following code snippet to your code.
var ws = new WebSocket( 'ws://127.0.0.1:12100' );
ws.addEventListener( 'message', function( event ) {
var oscMessage = JSON.parse( event.data );
// Code to parse the osc message goes here
} );