![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
obs-websocket-js
Advanced tools
OBSWebSocket.JS allows Javascript-based connections to obs-websocket.
Based heavily on obs-remote, which is built for the older, obs-classic compatible plugin.
Include the distributable file in the header of your HTML.
<script type='text/javascript' src='dist/obs-websocket.js'></script>
Then make use of it.
<script>
var ws = new OBSWebSocket();
// Bind some listeners by assigning functions, with params if applicable.
ws.onConnectionOpened = function() {
console.log('Connection Opened');
// Send some requests by calling existing functions and passing callbacks.
ws.getCurrentScene(function(err, data) {
console.log(err, data);
});
};
// Open the connection and Authenticate if needed. URL defaults to localhost:4444
ws.connect(); // ws.connect('url', 'password');
</script>
npm install obs-websocket-js --save
Add the library to your application.
var OBSWebSocket = require('obs-websocket-js');
var obsWS = new OBSWebSocket();
obsWS.connect('url', 'password');
npm install
npm install --only=dev
npm run build
npm run grunt watch
2 spaces rather than tabs.
FAQs
OBS Websocket API in Javascript, consumes @Palakis/obs-websocket
The npm package obs-websocket-js receives a total of 863 weekly downloads. As such, obs-websocket-js popularity was classified as not popular.
We found that obs-websocket-js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.