
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
aframe-oscsend-component
Advanced tools
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.
Install and use by directly including the browser files:
<head>
<title>My A-Frame Scene</title>
<script src="https://aframe.io/releases/0.7.0/aframe.min.js"></script>
<script src="https://rawgit.com/adzialocha/osc-js/master/dist/osc.min.js"></script>
<script src="https://unpkg.com/aframe-oscsend-component/dist/aframe-oscsend-component.min.js"></script>
</head>
<body>
<a-scene>
<a-entity geometry="box" position="0 1 -2"
oscsend="
serverURL: localhost;
serverPort: 8080;
messagePath: aframe;
">
<a-animation attribute="rotation"
dur="05000"
direction="alternate-reverse"
fill="forwards"
to="0 360 0"
repeat="indefinite">
</a-animation>
<a-animation attribute="position"
dur="10000"
direction="alternate-reverse"
to="0 3 -3"
repeat="indefinite">
</a-animation>
</a-entity>
</a-scene>
</body>
Install via npm:
npm install aframe-oscsend-component
Then require and use.
require('aframe');
require('aframe-oscsend-component');
FAQs
Sends OSC messages over a WebSocket connection.
We found that aframe-oscsend-component demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.