Socket
Socket
Sign inDemoInstall

@awinogrodzki/embed-plugin-youtube

Package Overview
Dependencies
8
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @awinogrodzki/embed-plugin-youtube

An embed-js plugin to embed youtube videos.


Version published
Weekly downloads
1
Maintainers
1
Install size
292 kB
Created
Weekly downloads
 

Readme

Source

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

FAQs

Last updated on 16 Apr 2020

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc