Socket
Socket
Sign inDemoInstall

yt-subscription-count-scraper

Package Overview
Dependencies
2
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    yt-subscription-count-scraper

Requests the HTML page of channel and extracts the subscriber count of the channel.


Version published
Weekly downloads
12
decreased by-7.69%
Maintainers
1
Install size
435 kB
Created
Weekly downloads
 

Readme

Source

YouTube Subscription Count Scraper NodeJS Documentation

This NodeJS library scrapes the channel page of a YouTube channel without any API usage. It is developed for and tailored towards easy usage in the FreeTube rewrite but can be used with any other project as well.

Therefore, this library does not require any API keys, with the attached maximum quotas, but instead might take longer to receive the required data.

The library works as long as YouTube keeps its web page layout the same. Therefore, there is no guarantee that this library will work at all times. If this library should not work at some point, please create an issue and let me know so that I can take a look into it. Pull requests are also welcomed in this case.

Installation

npm install yt-subscription-count-scraper

Usage

const ytsubcounter = require("yt-subscription-count-scraper")

API

scrape_subscriber_count_from_channel('channelURL')

Takes a complete channel URL and returns the subscriber count as number.

ytsubcounter.scrape_subscriber_count_from_channel("https://www.youtube.com/user/YouTube").then((data) =>{
    console.log(data);
}).catch((error)=>{
    console.log(error);
});

Keywords

FAQs

Last updated on 27 Jan 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc