New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@stormstreaming/stormplayer-react

Package Overview
Dependencies
Maintainers
2
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@stormstreaming/stormplayer-react

Dedicated React wrapper for Storm Player UI and Storm Player Core

latest
Source
npmnpm
Version
5.0.1
Version published
Weekly downloads
32
700%
Maintainers
2
Weekly downloads
 
Created
Source

⚠️ DEPRECATED – Storm Player React Component

This package has been renamed to @stormstreaming/player-react.

Please update your dependencies:

npm uninstall @stormstreaming/stormplayer-react
npm install @stormstreaming/player-react

Storm Player React is part of the new Storm Player ecosystem:

This repository contains the legacy React component and is kept for reference only.

Legacy Package

Storm JavaScript Player – React Component is a legacy React wrapper around Storm Player UI and Storm Library.
It requires a Storm Streaming Server instance or Storm Cloud subscription.

Legacy Installation

NPM

npm install @stormstreaming/stormplayer-react

Yarn

yarn add @stormstreaming/stormplayer-react

Server-Side Rendering (Legacy)

Storm Player relies on browser APIs such as window and HTMLVideoElement.
For SSR frameworks (e.g. Next.js), server-side rendering must be disabled.

Example:

import dynamic from "next/dynamic";

const StormPlayer = dynamic(
  () => import("@stormstreaming/stormplayer-react"),
  { ssr: false }
);

Usage:

{typeof window !== "undefined" && (
  <StormPlayer
    playerConfig={{
      containerID: "player1",
      width: "100%",
      height: "100%",
      title: "Your streaming video title",
      subtitle: "Subtitle for your video"
    }}
    libraryConfig={STORM_LIBRARY_CONFIG}
  />
)}

Requirements (Legacy)

  • Node.js 15.4.0+
  • React 17+

Browser Compatibility (Legacy)

  • Edge 12+
  • Chrome 31+
  • Firefox 42+
  • Safari 13+
  • Opera 15+

Older browsers fall back to HLS mode.

License

See LICENSE.txt.

Keywords

stormstreaming

FAQs

Package last updated on 05 Feb 2026

Did you know?

Socket

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.

Install

Related posts