npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@philwang/hls-player-react

v0.1.0

Published

A React HLS player component with smart buffering for EVENT-type m3u8 streams

Readme

@aspect-build/hls-player-react

A React component for playing HLS (m3u8) video streams, built on hls.js.

Designed for EVENT-type progressive HLS playlists where segments are generated on-the-fly (e.g. AI video generation pipelines). Handles the common pitfalls: polls for playlist completion before playback, buffers enough content to avoid stalls, and gracefully handles end-of-stream.

Install

npm install @aspect-build/hls-player-react

Usage

import { HlsPlayer } from "@aspect-build/hls-player-react";

function App() {
  return (
    <HlsPlayer
      src="https://example.com/video.m3u8"
      className="w-full rounded-xl"
      onEnded={() => console.log("done")}
    />
  );
}

Props

| Prop | Type | Default | Description | |------|------|---------|-------------| | src | string \| undefined | — | m3u8 URL. Falsy hides the player. | | className | string | — | CSS class for the <video> element. | | style | CSSProperties | — | Inline styles for the <video> element. | | autoPlay | boolean | true | Auto-play once buffer threshold is met. | | muted | boolean | false | Mute audio. | | loop | boolean | false | Loop playback. | | controls | boolean | true | Show native video controls. | | pollInterval | number | 2000 | Interval (ms) for polling playlists for #EXT-X-ENDLIST. | | pollTimeout | number | 60000 | Max time (ms) to poll before loading anyway. | | bufferThreshold | number | 0.8 | Buffer ratio (0–1) of known duration before auto-play. | | fetchCredentials | RequestCredentials | "include" | Fetch credentials mode for playlist polling. | | onEnded | () => void | — | Called when playback ends. | | onError | (msg: string) => void | — | Called on fatal error. | | onReady | () => void | — | Called when playback starts. |

How it works

  1. Poll for completion — Fetches the master m3u8, extracts media playlist URLs, and polls each until #EXT-X-ENDLIST appears (or timeout).
  2. Smart buffering — Prefers hls.js over native HLS. Tracks known duration from LEVEL_LOADED / AUDIO_TRACK_LOADED events. Delays playback until buffer reaches the configured threshold.
  3. End-of-stream detection — When the playlist transitions from live to VOD and the buffer is nearly exhausted, pauses playback and fires onEnded.

License

MIT