
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.
A simple (es6) library for dealing with background video's.
import Vidjo from 'vidjo';
const video = new Vidjo(document.body, 'videos/example', {
'poster': 'videos/poster.jpg',
'autoplay': true,
'shouldEnableVideo': () => window.matchMedia( "(min-width: 500px)" ).matches
});
To include Vidjo in your project, first install with npm.
$ npm install vidjo
Babel is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively.
import Vidjo from 'vidjo';
There are several ways to use Browserify and Webpack. For more information on using these tools, please refer to the corresponding project's documention. In the script, including Vidjo will usually look like this...
var Vidjo = require("vidjo");
AMD is a module format built for the browser. For more information, i recommend require.js' documentation.
define(["vidjo"], function($) {
});
FAQs
Background video made easy
We found that vidjo 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.