
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 lightweight, embeddable video/audio player SDK with a Web Component interface and React support, powered by Vidstack and Vite. It supports HLS (via hls.js), YouTube, Vimeo, Wistia, and regular MP4/MP3 sources, with customizable controls and theming.
A lightweight, embeddable video/audio player SDK with a Web Component interface and React support, powered by Vidstack and Vite. It supports HLS (via hls.js), YouTube, Vimeo, Wistia, and regular MP4/MP3 sources, with customizable controls and theming.
<video-sdk> you can drop on any pageAdd the UMD bundle and then the tag. Minimal example:
<!-- Include the UMD bundle -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/video-sdk@2.10.0/dist/video-sdk.css"
/>
<script src="https://cdn.jsdelivr.net/npm/video-sdk@2.10.0/dist/video-sdk.umd.js"></script>
<!-- Use the Web Component -->
<video-sdk
src="https://files.vidstack.io/sprite-fight/1080p.mp4"
poster="https://files.vidstack.io/sprite-fight/poster.webp"
thumbnails="https://files.vidstack.io/sprite-fight/thumbnails.vtt"
></video-sdk>
Common attributes (kebab-case):
Notes:
Install the package, then import and use the Player component.
pnpm add video-sdk
# or
npm install video-sdk
import { Player } from 'video-sdk';
export default function Example() {
return (
<Player
src='https://fast.wistia.com/embed/medias/2fu3znoof3.m3u8'
poster='https://embed-ssl.wistia.com/deliveries/d6ce4e2fffe8cdec5979ad24dca5c2c840c1d46b/file.png'
controls
playsInline
preferNativeHls
aspectRatio='16/9'
colorScheme='system'
/>
);
}
TypeScript types are included.
We publish Storybook to GitHub Pages via CI. After pushing to main or publishing a release, the latest Storybook is deployed. You can also run it locally:
pnpm install
pnpm storybook
To build the static Storybook:
pnpm build-storybook
pnpm buildpnpm lintpnpm formatpnpm previewThe library is built as a UMD bundle via Vite (see vite.config.ts). The main entry is src/main.tsx and the React components live under src/.
This repo uses semantic-release to automatically version, generate changelogs, and publish on merges to main.
.github/workflows/release.ymlfeat:, fix:)FAQs
A lightweight, embeddable video/audio player SDK with a Web Component interface and React support, powered by Vidstack and Vite. It supports HLS (via hls.js), YouTube, Vimeo, Wistia, and regular MP4/MP3 sources, with customizable controls and theming.
We found that video-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than 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.