0.3.2 • Published 2 years ago

ts-osc v0.3.2

Weekly downloads
20
License
MIT
Repository
gitlab
Last release
2 years ago

ts-osc

An easy to use, Typescript-Native OSC client.

API Docs here

Usage example

import {OSCClient, OSCType, OSCServer} from 'ts-osc';

const client = new OSCClient("localhost", 8000);

client.send('/hello', OSCType.String, "hello");

const server = new OSCServer("0.0.0.0", 8000);

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

NPM Scripts

TasksDescription
npm run buildBuild module & docs
npm run compileCompile TS
npm run watchCompile and watch
npm run cleanClean build folder
npm run docsgenerate docs
0.3.2

2 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.6

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago