Socket
Socket
Sign inDemoInstall

youtube-iframe

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    youtube-iframe

Wrapper for dynamically loading the YouTube iframe api script


Version published
Weekly downloads
2.8K
decreased by-20.21%
Maintainers
1
Install size
4.69 kB
Created
Weekly downloads
 

Readme

Source

youtube-iframe

Wrapper for dynamically loading the YouTube iframe api script

npm install youtube-iframe

Can be used with browserify or global window.YouTubeIframeLoader.

var YouTubeIframeLoader = require('youtube-iframe');

YouTubeIframeLoader.load(function(YT) {
	new YT.Player('player1', {
		height: '390',
		width: '640',
		videoId: 'M7lc1UVf-VE'
	});
});

YouTubeIframeLoader.load(function(YT) {
	new YT.Player('player2', {
		height: '390',
		width: '640',
		videoId: 'dQw4w9WgXcQ'
	});
});

Changelog

1.0.3

  • Typescript support (#3)

1.0.2

  • Always call the callback asynchronously (#2)
  • Fixed a bug with infinite recursion when nesting load() calls

1.0.1

  • Always use https instead of the protocol-relative URL (#1)

Keywords

FAQs

Last updated on 03 Aug 2016

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc