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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@hannal/editorjs-video-plugin

v0.0.2

Published

Video block tool for Editor.js supporting YouTube and Vimeo embeds with customizable options

Readme

EditorJS Video Plugin

A customizable video block plugin for Editor.js that supports YouTube, Vimeo, and other video platforms.

Features

  • 🎥 Built-in support for YouTube and Vimeo
  • 🔌 Extensible platform support - add your own video platforms
  • 📋 URL paste handling
  • 🔄 Real-time preview
  • ⚙️ Customizable embed options:
    • Fullscreen control
    • Clipboard access
    • Gyroscope functionality
  • 📱 Responsive design
  • 🔒 Sanitization support
  • 📖 Read-only mode support

Installation

NPM

npm install @hannal/editorjs-video-plugin

Browser

You can include the plugin directly in your HTML file:

<!-- Include Editor.js -->
<script src="https://cdn.jsdelivr.net/npm/@hannal/editorjs@latest"></script>

<!-- Include the Video Plugin -->
<script src="https://cdn.jsdelivr.net/npm/@hannal/editorjs-video-plugin@latest/dist/video-plugin.umd.js"></script>

<script>
  const editor = new EditorJS({
    tools: {
      video: {
        class: VideoPlugin.Video,
        config: {
          // Optional platform configurations
        }
      }
    }
  });
</script>

ES Module

You can also use it as an ES module:

<script type="module">
  import EditorJS from '@hannal/editorjs';
  import { Video } from '@hannal/editorjs-video-plugin';

  const editor = new EditorJS({
    tools: {
      video: {
        class: Video,
        config: {
          // Optional platform configurations
        }
      }
    }
  });
</script>

Or in your JavaScript files:

import EditorJS from '@hannal/editorjs';
import { Video, videoParser } from '@hannal/editorjs-video-plugin';

const editor = new EditorJS({
  tools: {
    video: Video
  }
});

Usage

Add the Video tool to your Editor.js configuration:

import { Video, videoParser } from '@hannal/editorjs-video-plugin';

const editor = new EditorJS({
  tools: {
    video: {
      class: Video,
      config: {
        // Optional platform configurations
      }
    }
  }
});

Basic Example

const editor = new EditorJS({
  tools: {
    video: Video
  }
});

Data Format

The tool saves data in the following format:

{
  url: 'https://www.youtube.com/watch?v=example',
  videoId: 'example',
  provider: 'youtube',
  fullscreen: true,
  clipboard: true,
  gyroscope: true
}

Adding Custom Video Platforms

You can add support for additional video platforms by providing a platforms configuration:

const editor = new EditorJS({
  tools: {
    video: {
      class: Video,
      config: {
        platforms: {
          dailymotion: {
            regex: /^.+dailymotion.com\/(?:video|embed)\/([^/?]+)/,
            embedUrl: (videoId) => `https://www.dailymotion.com/embed/video/${videoId}`,
            validate: (match) => match && match[1],
            getId: (match) => match[1]
          }
        }
      }
    }
  }
});

Platform Configuration Options

Each platform configuration requires:

| Property | Type | Description | |----------|------|-------------| | regex | RegExp | Regular expression to match the video URL | | embedUrl | Function | Function that returns the embed URL for a video ID | | validate | Function | Function that validates the regex match | | getId | Function | Function that extracts the video ID from the regex match |

Example: Adding Dailymotion Support

const dailymotionConfig = {
  dailymotion: {
    // Matches URLs like: https://www.dailymotion.com/video/x7tgd2g
    regex: /^.+dailymotion.com\/(?:video|embed)\/([^/?]+)/,
    embedUrl: (videoId) => `https://www.dailymotion.com/embed/video/${videoId}`,
    validate: (match) => match && match[1],
    getId: (match) => match[1]
  }
}

HTML Rendering

To render the saved data as HTML, use the provided parser:

import { videoParser } from '@hannal/editorjs-video-plugin';

const html = videoParser.video(blockData);

Configuration Options

The video block supports the following embed options:

| Option | Type | Default | Description | |--------|------|---------|-------------| | fullscreen | boolean | true | Allows fullscreen mode | | clipboard | boolean | true | Enables clipboard access | | gyroscope | boolean | true | Enables gyroscope functionality |

Development

  1. Clone the repository
  2. Install dependencies: npm install
  3. Build the package: npm run build

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

MIT License - see the LICENSE file for details.

Author

Hannal ([email protected])