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

eleventy-plugin-vimeo-embed

v1.3.8

Published

An Eleventy plugin to automatically embed Vimeo videos, using just their URLs.

Downloads

5,676

Readme

eleventy-plugin-vimeo-embed

NPM Version Build test status codecov
MIT License Contributor Covenant

This Eleventy plugin automatically embeds responsive Vimeo videos from URLs in Markdown files.


⚡️ Installation

In your Eleventy project, install the plugin through npm:

$ npm i eleventy-plugin-vimeo-embed

Then add it to your Eleventy config file:

const embedVimeo = require("eleventy-plugin-vimeo-embed");

module.exports = function(eleventyConfig) {
  eleventyConfig.addPlugin(embedVimeo);
};

🛠 Usage

To embed a Vimeo video into any Markdown page, paste its URL into a new line. The URL should be the only thing on that line.

Markdown file example:

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam vehicula, elit vel condimentum porta, purus.

https://vimeo.com/347565673

Maecenas non velit nibh. Aenean eu justo et odio commodo ornare. In scelerisque sapien at.

Result:

Screenshot of a Vimeo embed of Christian Stangl’s “The Comet”

⚙️ Settings

You can configure the plugin to change its behavior by passing an options object to the addPlugin function:

eleventyConfig.addPlugin(embedVimeo, {
  // edit options here
});

Plugin default options

Edit any of the default values in this options object to override the plugin behavior. These are the default settings, which will apply to all embed instances. Currently there’s no way to configure individual embeds.

{
  // Default “allowfullscreen” boolean attribute that gets applied to the embed <iframe>.
  // Change to false to disable fullscreen.
  allowFullscreen: true,
  // Default “dnt” (“do-not-track”) boolean attribute that gets applied to the embed URL.
  // Change to false to allow cookies and other tracking technology.
  dnt: true,
  // Default class that gets applied to the wrapper <div>.
  // Substitute your preferred string to target embeds with CSS.
  embedClass: 'eleventy-plugin-vimeo-embed'
});

Supported URL patterns

The plugin supports common Vimeo URL variants as well. These should also work in your Markdown files.:

<!-- No protocol: -->

vimeo.com/347565673
www.vimeo.com/347565673

<!-- With or without HTTPS: -->

http://vimeo.com/347565673
https://vimeo.com/347565673

<!-- With or without 'www': -->

https://www.vimeo.com/347565673
https://vimeo.com/347565673

<!-- URLs with extra parameters or fragments: -->

https://vimeo.com/347565673?autoplay=1
https://vimeo.com/347565673#t30s

If you run across a URL pattern that you think should work, but doesn’t, please file an issue!

⚠️ Notes and caveats

  • This plugin is deliberately designed only to embed videos when the URL is on its own line, and not inline with other text.
  • To do this, it uses a regular expression to recognize Vimeo video URLs. Currently these are the limitations on what it can recognize in a Markdown parser’s HTML output:
    • The URL must be wrapped in a paragraph tag: <p>
    • It may also be wrapped in an anchor tag, (inside the paragraph): <a>
    • The URL string may have whitespace around it
  • I’ve tried to accommodate common variants, but there are conceivably valid Vimeo URLs that wouldn’t get recognized. Please file an issue if you run into an edge case!
  • This plugin uses transforms, so it alters Eleventy’s HTML output as it’s generated. It doesn’t alter the source Markdown.
  • The embedded video is responsive, using the intrinsic aspect ratio method. It will expand to fill whatever horizontal space is available.
  • The embed dimensions are currently hard-coded to a 16:9 aspect ratio.