@simon.jaeggi/tuio
Version:
Updated version of the Tuio.js server. Bridges OSC to WebSocket using Socket.IO v4 for multitouch and tangible interaction in web applications.
30 lines (20 loc) • 512 B
Markdown
A modernized version of the original Tuio.js server for Node.js. Receives OSC messages over UDP and forwards them to WebSocket clients using Socket.IO v4.
`npm install tuio`
```js
const TuioServer = require("tuio");
TuioServer.init({
oscPort: 3333,
oscHost: "0.0.0.0",
socketPort: 8080
});
```
See examples.
Based on the original Tuio.js server by Felix Raab
https://github.com/fe9lix/Tuio.js
Licensed under the GPL license.