Sends OSC messages over a WebSocket connection.
npm install aframe-oscsend-component

Sends OSC messages over a websocket connection.
| Property | Description | Default Value |
| ----------- | ----------------------------------- | ------------- |
| serverURL | Path to a websocket server | localhost |
| serverPort | Port of websocket server | 8080 |
| messagePath | Send OSC messages with this address | '' |
In order to send messages over UDP you need to connect via WebSocket to a bridge server that will
forward forward the messages it recieves. Follow this example using osc-js.
#### Browser
Install and use by directly including the browser files:
``html
#### npm
Install via npm:
`bash
npm install aframe-oscsend-component
`Then require and use.
`js
require('aframe');
require('aframe-oscsend-component');
``