
Security News
/Research
Compromised Injective SDK npm Package Exfiltrates Wallet Keys and Mnemonics
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.
solid-plyr
Advanced tools
A simple HTML5, YouTube and Vimeo player (Plyr) for SolidJS
This library is available through the npm registry.
NPM
$ npm -i solid-plyr
Yarn
$ yarn add solid-plyr
Start using it by importing the library first.
const SolidPlyr = require('solid-plyr');
or
import { SolidPlyr } from 'solid-plyr';
The SolidPlyr component requires the following CSS for styling:
Using link tags
<link href="https://unpkg.com/solid-plyr@1.0.0/dist/esm/index.css.map" rel="stylesheet">
Using import
import 'solid-plyr/dist/esm/index.css.map';
Video playback through Solid Plyr Player
import { SolidPlyr } from 'solid-plyr';
const SOURCES = [
{
src: 'https://bitmovin-a.akamaihd.net/content/playhouse-vr/m3u8s/105560.m3u8',
type: 'application/x-mpegURL',
},
{
src: 'https://bitmovin-a.akamaihd.net/content/playhouse-vr/mpds/105560.mpd',
type: 'application/dash+xml',
}
];
export default function Player() {
return (
<SolidPlyr sources={SOURCES} autoplay="muted" />
);
}
Uncontrolled Solid Plyr Player
import { UncontrolledSolidPlyr, createPlayer } from 'solid-plyr';
const SOURCES = [
{
src: 'https://bitmovin-a.akamaihd.net/content/playhouse-vr/m3u8s/105560.m3u8',
type: 'application/x-mpegURL',
},
{
src: 'https://bitmovin-a.akamaihd.net/content/playhouse-vr/mpds/105560.mpd',
type: 'application/dash+xml',
}
];
export default function Player() {
const { ref } = createPlayer({
sources: SOURCES,
muted: true,
});
return (
<UncontrolledSolidPlyr playerRef={SOURCES} />
);
}
See also the list of contributors who participated in this project.
FAQs
A simple HTML5, YouTube and Vimeo player (Plyr) for SolidJS
The npm package solid-plyr receives a total of 12 weekly downloads. As such, solid-plyr popularity was classified as not popular.
We found that solid-plyr 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
/Research
Compromised Injective SDK npm version 1.20.21 exfiltrates wallet private keys and mnemonics through fake telemetry functionality.

Security News
npm v12 is generally available, turning install scripts off by default and beginning the deprecation of 2FA-bypass publishing tokens.

Research
/Security News
Socket tracks the activity as Operation “Muck and Load”: a threat actor uses commit-farming workflows, public dead drops, and protected archives to stage Windows RAT and infostealer malware.