![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.
@openreplay/tracker-assist
Advanced tools
Tracker plugin for WebRTC video support at your site.
npm i @openreplay/tracker-assist
Initialize the @openreplay/tracker
package as usual and load the plugin into it.
import Tracker from '@openreplay/tracker';
import trackerAssist from '@openreplay/tracker-assist';
const tracker = new Tracker({
projectKey: YOUR_PROJECT_KEY,
});
tracker.start();
tracker.use(trackerAssist());
Options:
{
confirmText: string,
confirmStyle: Object,
config: RTCConfiguration,
onAgentConnect: () => (()=>void | void),
onCallStart: () => (()=>void | void),
}
Use confirmText
option to specify a text in the call confirmation popup.
You can specify its styles as well with confirmStyle
style object.
{
background: "#555"
color: "orange"
}
It is possible to pass config
RTCConfiguration object in order to configure TURN server or other parameters.
config: {
iceServers: [{
urls: "stun:stun.services.mozilla.com",
username: "louis@mozilla.com",
credential: "webrtcdemo"
}, {
urls: ["stun:stun.example.com", "stun:stun-1.example.com"]
}]
}
You can pass onAgentConnect
callback. It will be called when someone from OpenReplay UI connects to the current live session. It can return another function. In this case, returned callback will be called when the same agent connection gets closed.
onAgentConnect: () => {
console.log("Hello!")
const onAgentDisconnect = () => console.log("Bye!")
return onAgentDisconnect
}
Warning: it is possible for the same agent to be connected/disconnected several times during one session due to a bad network. Several agents may connect simultaneously.
A callback onCallStart
will be fired when the end-user accepts the call. It can return another callback that will be called on the call end.
onCallStart: () => {
console.log("Allo!")
const onCallEnd = () => console.log("short beeps...")
return onCallEnd
}
FAQs
Tracker plugin for screen assistance through the WebRTC
The npm package @openreplay/tracker-assist receives a total of 3,648 weekly downloads. As such, @openreplay/tracker-assist popularity was classified as popular.
We found that @openreplay/tracker-assist 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.