embed-plugin-youtube

5.0.4 • Public • Published

embed-plugin-youtube

A plugin that can be used to embed Youtube videos.

Installation

npm i -S embed-js embed-plugin-youtube

CDN

https://unpkg.com/embed-plugin-youtube

Usage

Edit embed.js - youtube

This embeds youtube videos in the page. This plugin supports two mode controlled by the option details.

import EmbedJS from 'embed-js'
import { youtube } from 'embed-js/src/plugins'

const x = new EmbedJS({
  input: document.getElementById('element'),
  plugins: [
  youtube({
    regex: /youtubeVideoRegex/gi, // in case you want to define a custom regex,

    // If set to false, it doesn't make API calls to Youtube for video details. Instead it just embeds the video.
    details: true,

    // This is a mandatory field. 
    gAuthKey: '' 

     // height of video iframe 
    height: 300,

    // This is the class on clicking which the details view changes to embedded video.
    // This is only required if you providing a custom template for the details view.
    clickClass: "ejs-video-thumb",

    template(args, options, pluginOptions, dataFromApi) {
      // dataFromApi is undefined if details is set to false
    },

    // executes when element is rendered
    onLoad(options, pluginOptions) {}
   })
 ]
})

License

MIT @ Ritesh Kumar

Readme

Keywords

none

Package Sidebar

Install

npm i embed-plugin-youtube

Weekly Downloads

213

Version

5.0.4

License

MIT

Unpacked Size

78.3 kB

Total Files

9

Last publish

Collaborators

  • ritz078