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 🙏

© 2024 – Pkg Stats / Ryan Hefner

hexo-tag-youtube-responsive

v0.4.2

Published

Hexo tag plugin to embed a Youtube player that auto resizes with your responsive layout

Downloads

100

Readme

Build Status Coverage StatusNPM Downloads NPM Version Dependencies License

hexo-tag-youtube-responsive

Hexo tag plugin to embed a Youtube player that auto resizes with your responsive layout.

Install

Install using npm.

$ npm install hexo-tag-youtube-responsive --save

Usage

Embed a video

  {% youtuber video VIDEO_ID %}

For example

  {% youtuber video I07XMi7MHd4 %}

Embed a playlist

  {% youtuber playlist PLAYLIST_ID %}

For example

  {% youtuber playlist PLC77007E23FF423C6 %}

Note that you need to prepend the playlist ID with the letters PL as shown above

Embed search results of a query

  {% youtuber search QUERY_KEYWORDS %}

For example

  {% youtuber search hexo %}
  {% youtuber search hexo+tag+plugin %}

If your search has more than one keyword, use + to concatenate them together as shown above

Embed a user's uploaded videos (a.k.a. channel)

  {% youtuber user USERNAME %}

For example

  {% youtuber search daddybear %}

Note that you must supply the user name and not the channel ID

Parameters

You may specify additional parameters in YAML format as

{% youtuber video VIDEO_ID %}
  allowfullscreen: yes,
  autoplay: 1,
  cc_lang_pref: fr,
  cc_load_policy: 1,
  color: white,
  controls: 0,
  disablekb: 1,
  enablejsapi: 1,
  end: 210,
  frameborder: 20,
  fs: 0,
  height: 480,
  hl: fr,
  iv_load_policy: 3,
  loop: 1,
  modestbranding: 1,
  origin: your-domain,
  playlist: "videoId1,videoId2,videoId3",
  playsinline: 0,
  privacy_mode: yes,
  rel: 1,
  showinfo: 0,
  start: 30,
  widget_referrer: https://your-domain.com/some-page,
  width: 640,
{% endyoutuber %}

The majority of the parameters can be found in Youtube documentation.

For the remaining:

  • If width and height are given as dimension of the player, it will cancel the auto-resize feature of this widget
  • frameborder allows to specify the edge thickness around the player
  • privacy_mode allows to play video without being tracked by google (no cookies used)
  • allowfullscreen let the user switch on the full screen mode if desired

Defaults

The parameters above can be specified globally with default values via _config.yml file.

youtuber:
  allowfullscreen: yes,
  autoplay: 1