getyoutubesubscriber
Version:
Simply get the number of subscriber count of user
17 lines (11 loc) • 676 B
Markdown
# getYoutubeSubscriber
  
Quickly get number of subscribers of youtube account. Don't need to get an API key, just implement and it just works
### Usage
```javascript
const getYoutubeSubscriber = require('getyoutubesubscriber')
getYoutubeSubscriber('Here place channel ID').then((data) => {
console.log(data) // log subscriber count
});
```
It's an asynchronous function, so it doesn't block other processes.