文件名称:node-osc:打开Node.js的声音控制协议库
文件大小:60KB
文件格式:ZIP
更新时间:2024-05-18 03:14:57
JavaScript
节点振荡器 简洁客户端。 受到启发。 使用npm安装 npm install node-osc 使用ESM编写的支持CJS 如果您使用的是Node.js 10+,则可以使用此库。 例子 发送OSC消息: import { Client } from 'node-osc' ; const client = new Client ( '127.0.0.1' , 3333 ) ; client . send ( '/oscAddress' , 200 , ( ) => { client . close ( ) ; } ) ; 侦听OSC消息: import { Server } from 'node-osc' ; var oscServer = new Server ( 3333 , '0.0.0.0' , ( ) => { console . log ( 'OSC Server
【文件预览】:
node-osc-main
----.eslintrc.yml(267B)
----.gitignore(42B)
----package.json(2KB)
----package-lock.json(160KB)
----.github()
--------workflows()
----examples()
--------client.js(506B)
--------esm.mjs(394B)
--------server.js(232B)
----rollup.config.mjs(841B)
----scripts()
--------rewrite-exports.js(827B)
----README.md(1KB)
----lib()
--------types.mjs(3KB)
--------Message.mjs(1KB)
--------Server.mjs(979B)
--------index.mjs(152B)
--------Client.mjs(2KB)
--------decode.mjs(1KB)
----.npmignore(36B)
----lesser.txt(26KB)
----test()
--------test-decode.mjs(1KB)
--------test-message.mjs(4KB)
--------test-client.mjs(2KB)
--------test-types.mjs(3KB)
--------test-server.mjs(1KB)
--------util.mjs(171B)
--------test-e2e.mjs(1KB)