youtube-comments-fetch

1.0.1 • Public • Published

Youtube-Comments

Examples

const Youtube = require('youtube-comments-fetch')
 
Youtube.fetchComments('7Glc2mHLPRM')
  .fork(e => console.error('ERROR', e),
        p => {
          console.log('comments', p.comments)
          console.log('nextPageToken', p.nextPageToken)
        })
const Youtube = require('youtube-comments-fetch')
 
Youtube.fetchAllComments('7Glc2mHLPRM')
  .fork(e => console.error('ERROR', e),
        allComments => console.log(allComments))
 

Dependencies (12)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i youtube-comments-fetch

    Weekly Downloads

    6

    Version

    1.0.1

    License

    ISC

    Unpacked Size

    127 kB

    Total Files

    52

    Last publish

    Collaborators

    • ranxfan