Security News
npm Updates Search Experience with New Objective Sorting Options
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
@redbeemedia/javascript-player-plugins
Advanced tools
Plugins for the JavaScript player.
Plugin for sending analytics data to Mux.
import { RedBeePlayer } from "@redbeemedia/javascript-player";
import { MuxDataPlugin } from "@redbeemedia/js-player-plugins";
// Setup and load the player as usual
const player = new RedBeePlayer(...);
/*
Create a new instance of the plugin
The muxDataMetadata property can contain custom metadata fields to be sent to Mux.
See https://docs.mux.com/guides/data/make-your-data-actionable-with-metadata for more information.
*/
const analytics = new MuxDataPlugin({
debug: true,
muxDataMetadata: {
env_key: "your-mux-env-key",
},
privacySettings: {
respectDoNotTrack: false,
disableCookies: false,
},
});
// Add the plugin to the player
// The plugin will be initialized and start sending data to Mux as soon as the player is ready
analytics.connect(player);
// To disconnect the plugin
analytics.disconnect();
// To destroy the plugin
analytics.destroy();
Plugins should always extend the AbstractPlugin
class that defines the interface for player plugins. The AbstractPlugin
class also provides some helper methods for plugins to use.
import { AbstractPlugin, IBasePluginOptions } from "./AbstractPlugin";
import type { RedBeePlayer } from "@redbeemedia/javascript-player";
export class MyCustomPlugin extends AbstractPlugin {
constructor(options: IBasePluginOptions) {
// Call the super constructor with the plugin debug flag.
super(options.debug);
// Do your plugin initialization here.
}
public connect(playerInstance: RedBeePlayer): void {
// This method will be called when the plugin is loaded.
// The plugin should connect to the player and listen for player events.
}
public disconnect(): void {
// This method will be called when the plugin is unloaded.
// The plugin should stop listening for player events.
}
public destroy(): void {
// This method will be called when the plugin is destroyed.
// The plugin should clean up any resources it has created.
}
}
FAQs
Plugins Javascript Module
The npm package @redbeemedia/javascript-player-plugins receives a total of 0 weekly downloads. As such, @redbeemedia/javascript-player-plugins popularity was classified as not popular.
We found that @redbeemedia/javascript-player-plugins demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
npm has a revamped search experience with new, more transparent sorting options—Relevance, Downloads, Dependents, and Publish Date.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.