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

react-jwplayer

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-jwplayer

React component for JWPlayer

latest
Source
npmnpm
Version
0.3.2
Version published
Maintainers
1
Created
Source

react-jwplayer Build Status

A simple React component for JWPlayer embedded players

Installation

npm i -S react-jwplayer

Usage

First, make sure to import the component.

import JWPlayer from 'react-jwplayer';

react-jwplayer creates a <div> wrapping an <iframe> and does NOT currently provide access to JWPlayer's JavaScript API.

It has one mandatory prop, videoId, which is the MediaID (or KEY in the KEY-PLAYER pair) found in your JWPlayer Dashboard.

Simplest Example:

import React from 'react';
import ReactDOM from 'react-dom';
import JWPlayer from 'react-jwplayer';

ReactDOM.render(
  <JWPlayer videoId="<your-id-here>" />,
  document.body
);

The default player is in 16:9 aspect ratio and uses the Glow design.

Other players can be selected with the 'player' prop, which takes a string.

There are four valid options:

* '16' (default): A 16:9 player in the Glow theme.
* '4': A 4:3
 player in the Glow theme.
* '16loop': An autostarting, looping, chromeless 16:9 player, suitable for background video.
* '4loop': An autostarting, looping, chromeless 4:3 player, suitable for background video.
//This will output a 4:3 ratio player instead.
<JWPlayer videoId="<your-id-here>" player="4" />

Keywords

react

FAQs

Package last updated on 05 Nov 2016

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