
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
videojs-creo-slide
Advanced tools
Creo slide plugin
npm install --save videojs-creo-slide
To include videojs-creo-slide on your website or web application, use any of the following methods.
<script> TagThis is the simplest case. Get the script in whatever way you prefer and include the plugin after you include video.js, so that the videojs global is available.
<script src="//path/to/video.min.js"></script>
<script src="//path/to/videojs-creo-slide.min.js"></script>
<script>
var player = videojs('my-video');
player.creoSlide();
</script>
When using with Browserify, install videojs-creo-slide via npm and require the plugin as you would any other module.
var videojs = require('video.js');
// The actual plugin function is exported by this module, but it is also
// attached to the `Player.prototype`; so, there is no need to assign it
// to a variable.
require('videojs-creo-slide');
var player = videojs('my-video');
player.creoSlide();
When using with RequireJS (or another AMD library), get the script in whatever way you prefer and require the plugin as you normally would:
require(['video.js', 'videojs-creo-slide'], function(videojs) {
var player = videojs('my-video');
player.creoSlide();
});
MIT. Copyright (c) Jesper Pettersson <jezperp@gmail.com>
FAQs
Creo slide plugin
The npm package videojs-creo-slide receives a total of 0 weekly downloads. As such, videojs-creo-slide popularity was classified as not popular.
We found that videojs-creo-slide 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.