No description
Find a file
2021-01-23 20:13:42 +01:00
src docs 2021-01-23 16:28:49 +01:00
.gitignore docs 2021-01-23 16:28:49 +01:00
.gitlab-ci.yml fix CI npm 2021-01-23 20:13:42 +01:00
.npmignore docs 2021-01-23 16:28:49 +01:00
package-lock.json fix npm script 2021-01-23 16:36:00 +01:00
package.json ci publish test 2021-01-23 20:11:20 +01:00
README.md first npm publish 2021-01-23 19:50:22 +01:00
tsconfig.json Initial Commit 2021-01-23 15:43:09 +01:00

ts-osc

An easy to use, Typescript-Native OSC client.

API Docs here

Usage example

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);
})