ts-osc/README.md
2021-01-23 19:50:22 +01:00

21 lines
396 B
Markdown

# ts-osc
An easy to use, Typescript-Native OSC client.
API Docs [here](https://riksolo.pages.riksolo.com/ts-osc/)
## Usage example
```javascript
import {OSCClient, OSCType} from 'ts-osc';
const client = new OSCClient({
outHost: "localhost",
outPort: 8000,
inPort: 8000
})
client.send('/hello', OSCType.String, "hello");
client.on('message', (msg)=>{
console.log(msg);
})
```