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

react-dailymotion

v0.4.1

Published

Dailymotion player component for React.

Readme

react-dailymotion

Dailymotion player component for React.

Install - Usage - Demo - Props

Install

npm install --save react-dailymotion

Usage

Demo - Demo source code

import Dailymotion from 'react-dailymotion';

<Dailymotion
  video="x2to0hs"
  uiTheme="light"
  autoplay
/>

Props

| Name | Type | Default | Description | |:-----|:-----|:-----|:-----| | video | string | | A string representing a video ID – of the form xID (e.g. xwr14q) for public-accessible videos or kID (e.g. kABCD1234) for private-accessible videos. | | id | string | | DOM ID for the player element. | | className | string | | CSS className for the player element. | | width | number, string | | Width of the player element. | | height | number, string | | Height of the player element. | | paused | bool | | Pause the video. | | autoplay | bool | | Starts the playback of the video automatically after the player loads. | | controls | bool | | Whether to display the player controls or not. This parameter only removes the control bar, but keeps the startscreen and the endscreen (useful on mobile devices where the video tag needs a direct user interaction to start the playback). | | showEndScreen | bool | | Whether to enable the end screen or not. | | mute | bool | | Whether to mute the video or not. | | origin | string | | The domain of the page hosting the Dailymotion player. You might want to specify origin for extra security. | | quality | enum: 'auto' '240' '380' '480' '720' '1080' '1440' '2160' | 'auto' | Specifies the suggested playback quality for the video. | | showQueue | bool | false | Whether to show the Up Next queue. | | autoplayQueue | bool | false | Whether to play automatically the next item in the queue. | | sharing | bool | | Whether to display the sharing button or not. | | start | number | | Specifies the time (in seconds) from which the video should start playing. | | subtitles | string | | Specifies the selected subtitles language. | | syndication | string | | Passes your syndication key to the player. | | uiHighlightColor | string | | Change the default highlight colour used in the controls (hex value). See the player customisation section in the Dailymotion docs for more on how this option is actually used. | | uiShowLogo | bool | | Whether to display the Dailymotion logo or not. | | uiShowStartScreenInfo | bool | | Whether to show video information (title and owner) on the start screen. | | uiTheme | enum: 'light' 'dark' | 'dark' | Choose the default base colour theme. See the player customisation section in the Dailymotion docs for more on how this option is actually used. | | volume | number | | Sets the player's volume to the specified level, a number between 0 and 1. | | onAdEnd | function | | Sent when the player reaches the end of an Ad media resource. | | onAdPause | function | | Sent when an Ad playback pauses. | | onAdPlay | function | | Sent when an Ad playback starts. | | onAdStart | function | | Sent when the player starts to play an Ad media resource. | | onAdTimeUpdate | function | | Sent on each Ad's time update. | | onApiReady | function | | Sent when the player is ready to accept API commands. | | onDurationChange | function | | Sent when the duration of the video become available or change during playback. | | onEnd | function | | Sent when playback has stopped at the end of the media resources set (ads + content). | | onError | function | | Sent when the player triggers an error. | | onFullscreenChange | function | | Sent when the player enters or exits fullscreen. | | onLoadedMetadata | function | | Sent when video's metadata are available. | | onPause | function | | Sent when playback pauses after the pause method returns. | | onPlay | function | | Sent when playback starts after the play method returns. | | onPlaying | function | | Sent when the content media resource playback has started. | | onProgress | function | | Sent when the browser is fetching the media data. | | onQualitiesAvailable | function | | Sent when qualities are available – see qualities for accepted values. | | onQualityChange | function | | Sent when the current quality changes. | | onSeeked | function | | Sent when the player has completed a seeking operation. | | onSeeking | function | | Sent when the player is starting to seek to another position in the video. | | onSubtitleChange | function | | Sent when the current subtitle changes. | | onSubtitlesAvailable | function | | Sent when subtitles are available. | | onStart | function | | Sent the first time the player attempts to start the playback, either because of a user interaction, an autoplay parameter, or an API call (e.g play(), load(), etc.). | | onTimeUpdate | function | | Sent when the playback position changes as part of normal playback or because of some other condition. | | onVideoStart | function | | Sent when the player starts to play the content media resource. | | onVideoEnd | function | | Sent when the player reaches the end of the content media resource. | | onVolumeChange | function | | Sent when the player volume or mute state has changed. | | onWaiting | function | | Sent when the player has to stop video playback for further buffering of content. |

Related

License

MIT