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

@orbit-love/youtube

v1.0.3

Published

Add YouTube interactions into Orbit workspaces

Downloads

2,018

Readme

Warning This repository is no longer recommended or maintained and has now been archived. Huge thanks to the original authors and contributors for providing this to our community. Should you wish to maintain your own version of this repository, you are welcome to fork this repository and continue developing it there.


YouTube to Orbit Workspace

Build Status npm version Contributor Covenant

This is a JavaScript package that can be used to integrate YouTube comments from videos uploaded to a specified channel into your organization's Orbit workspace.

|:sparkles: This is a community project. The Orbit team does its best to maintain it and keep it up to date with any recent API changes.We welcome community contributions to make sure that it stays current. :sparkles:| |-----------------------------------------|

There are three ways to use this integration. Install package - build and run your own applications. Run the CLI - run on-demand directly from your terminal. Schedule an automation with GitHub - get started in minutes - no coding required

First Time Setup

To set up this integration you will need some details from YouTube.

  1. Create a project in the Google Developers Console
  2. After creating your project, make sure the YouTube Data API is one of the services that your application is registered to use.
  3. Go to the Credentials area of your application and create an API Key. Take note of the API Key as it will only be shown once.
  4. Get your Channel's ID by following these steps.

Notes about quota

Please take a moment to read the quota usage section of the YouTube Data API documentation. Per request this application:

  • makes one list channel request
  • makes one list videos request for every 50 videos on your channel
  • makes one list commentThread request for every video with at least one comment

This should be fine for a majority of channels, but if you are concerned you will exceed the quota follow the provided guide on how to request a quota increase.

Package Usage

Install the package with the following command

$ npm install @orbit-love/youtube

Use the package with the following snippet.

const OrbitYouTube = require('@orbit-love/youtube')
const orbitYouTube = new OrbitYouTube()

const summary = addNewComments({ channelId: 'channel-id', hours: 24 })
console.log(summary) // "{ added: 42, duplicates: 0, errors: [] }"

The standard initialization of the library requires the following signature:

const OrbitYouTube = require('@orbit-love/youtube')
const orbitYouTube = new OrbitYouTube('orbitWorkspaceId', 'orbitApiKey', 'ytApiKey')

If you have the following environment variables set: ORBIT_WORKSPACE_ID, ORBIT_API_KEY, and YOUTUBE_API_KEY then you can initialize the client as follows:

const OrbitYouTube = require('@orbit-love/youtube')
const orbitYouTube = new OrbitYouTube()

Methods

addNewComments([options])

Use this if you do not want to use provided methods and want the easiest way to add new YouTube comments to Orbit.

|Property|Purpose|Options|Default| |---|---|---|---| |options.channelId|YouTube Channel ID|string|| |options.hours|How many hours worth of comments to add|int|| |options.log|Verbosely log progress|true, false|false|

Returns Promise -> Object { added: int, duplicates: int, errors: [] }

getChannelUploadPlaylistId(channelId)

All of a channel's uploaded videos are in a hidden playlist. This method returns the ID of that playlist.

Returns: Promise -> String

getVideoPage(playlistId, [pageToken])

Returns a single page of video results from the provided playlist. Also returns the nextPageToken if present.

Returns Promise -> Object { items: [], nextPageToken?: 'token' }

getVideos(playlistId)

Loops over pages using getVideoPage() and returns a complete list of videos from the provided playlist.

Returns Promise -> Array

getCommentPage(videoId, [pageToken])

Returns a single page of comment results from the provided video. Also returns the nextPageToken if present.

Returns Promise -> Object { items: [], nextPageToken?: 'token' }

getComments(videoId)

Loops over pages using getCommentPage() and returns a complete list of comments from the provided video.

Returns Promise -> Array

getChannelComments(channelId, [options])

Equivalent to calling getChannelUploadPlaylistId(), getVideos(), and getComments() for each video.

|Property|Purpose|Options|Default| |---|---|---|---| |options.log|Verbosely log progress|true, false|false| |options.addTitle|Add video title to returned comment objects|true, false|false|

Return Promise -> Array

filterComments(list, hours)

Given a list of comments, filters out any comments which are older than the specified hours.

Returns Promise -> Array

prepareComments(list, [hours])

Given a list of comments, prepares objects as valid Orbit activities ready to be sent via the Orbit API. You may optionally provide hours and this function will run filterComments() on your behalf.

Returns Promise -> Array

addActivities(list)

Sends the provided list of prepared activities to Orbit via the Orbit API. Duplicates will not be added to Orbit.

Returns Promise -> Object { added: int, duplicates: int, errors: [] }

CLI Usage

To use this package you do not need to install it, but will need Node.js installed on your machine.

npx @orbit-love/youtube --comments

By default this will get the last 24 hours worth of activity, but this can be explicitly overridden:

npx @orbit-love/youtube --comments --hours=24

If you have set the YOUTUBE_CHANNEL_ID environment variable we will use this. If you want to be explicit you can provide it explicitly:

npx @orbit-love/youtube --comments --channel=id

To use the CLI you must have the following environment variables set: ORBIT_WORKSPACE_ID, ORBIT_API_KEY, YOUTUBE_API_KEY.

GitHub Actions Automation Setup

⚡ You can set up this integration in a matter of minutes using our GitHub Actions template. It will run regularly to add new activities to your Orbit workspace. All you need is a GitHub account.

See our guide for setting up this automation

Performing a Historical Import

You may want to perform a one-time historical import to fetch all your previous YouTube interactions and bring them into your Orbit workspace. To do so, set the hours tag to 720 for 30 days of import.

Contributing

We 💜 contributions from everyone! Check out the Contributing Guidelines for more information.

License

This project is under the MIT License.

Code of Conduct

This project uses the Contributor Code of Conduct. We ask everyone to please adhere by its guidelines.