No description
Find a file
2021-01-23 15:43:09 +01:00
src Initial Commit 2021-01-23 15:43:09 +01:00
.gitignore Initial Commit 2021-01-23 15:43:09 +01:00
.npmignore Initial Commit 2021-01-23 15:43:09 +01:00
package-lock.json Initial Commit 2021-01-23 15:43:09 +01:00
package.json Initial Commit 2021-01-23 15:43:09 +01:00
README.md Initial Commit 2021-01-23 15:43:09 +01:00
tsconfig.json Initial Commit 2021-01-23 15:43:09 +01:00

ts-osc

An easy to use, Typescript-Native OSC client.

Usage example

import {OSCClient} from 'ts-osc';

const client = new OSCClient({
    outHost: "localhost",
    outPort: 8000,
    inPort: 8000
})

client.send('/hello', "string", "hello");

client.on('message', (msg)=>{
    console.log(msg);
})