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

youtube-upload-activepieces

v0.0.5

Published

A powerful Activepieces plugin that enables seamless video uploads to YouTube through the YouTube Data API.

Readme

YouTube Upload Plugin

A powerful Activepieces plugin that enables seamless video uploads to YouTube through the YouTube Data API.

Overview

This plugin provides a straightforward way to upload videos to YouTube channels directly from your Activepieces workflows. It handles authentication through Google OAuth and simplifies the YouTube upload process.

Features

  • 🎥 Direct video upload to YouTube
  • 🔐 Secure Google OAuth authentication
  • 🚀 Simple integration with Activepieces workflows
  • ✨ Built with the Activepieces framework

Prerequisites

Before using this plugin, you need to:

  1. Create a Google Cloud Project

  2. Enable YouTube Data API v3

    • In your Google Cloud Project, navigate to "APIs & Services" > "Library"
    • Search for "YouTube Data API v3"
    • Click "Enable"
  3. Configure OAuth 2.0 Credentials

    • Go to "APIs & Services" > "Credentials"
    • Create OAuth 2.0 credentials
    • Add authorized redirect URIs for your Activepieces instance

Installation

Install the plugin in your Activepieces instance:

npm install youtube-upload-activepieces

Or add it to your package.json:

{
  "dependencies": {
    "youtube-upload-activepieces": "^1.0.0"
  }
}

Configuration

Authentication

The plugin uses Google OAuth for authentication. When adding the plugin to your flow:

  1. Click on the authentication field
  2. Select "Create New Connection"
  3. Follow the Google OAuth flow to authorize access to your YouTube channel
  4. The connection will be saved for future use

Required Scopes

The plugin requires the following YouTube API scopes:

  • https://www.googleapis.com/auth/youtube.upload
  • https://www.googleapis.com/auth/youtube

Usage

Upload Video Action

The plugin provides an uploadVideo action that allows you to upload videos to YouTube.

Basic Example:

  1. Add the "YouTube Upload" step to your flow
  2. Select your authenticated Google connection
  3. Configure the video upload parameters:
    • Video file (from previous step or file input)
    • Video title
    • Description
    • Privacy status (public, private, unlisted)
    • Tags
    • Category

Workflow Example:

Trigger (e.g., New file in Google Drive)
  ↓
YouTube Upload
  - Video File: {{trigger.file}}
  - Title: "My Video"
  - Description: "Uploaded via Activepieces"
  - Privacy: "private"

Actions

uploadVideo

Uploads a video file to YouTube.

Parameters:

  • Video file (required)
  • Title (required)
  • Description (optional)
  • Privacy status (required)
  • Tags (optional)
  • Category (optional)

Development

Project Structure

youtube-upload-activepieces/
├── src/
│   ├── index.ts          # Main plugin definition
│   ├── auth.ts           # Google OAuth configuration
│   └── actions/
│       └── upload-video.ts # Upload video action
├── package.json
├── LICENSE
└── README.md

Building

npm run build

Testing

npm test

Author

Stefan Bogdan

Company

Laravel Company
Website: https://laravelcompany.com

Support

For issues, questions, or contributions, please:

License

This project is licensed under the Creative Commons Attribution 4.0 International License (CC BY 4.0).

Copyright © 2024 Laravel Company

You are free to:

  • Share — copy and redistribute the material in any medium or format
  • Adapt — remix, transform, and build upon the material for any purpose, even commercially

Under the following terms:

  • Attribution — You must give appropriate credit to Laravel Company, provide a link to the license, and indicate if changes were made.

For more details, see the Creative Commons CC BY 4.0 License.

Credits