youtube-comments-fetch
v1.0.1
Published
Downloads
1
Readme
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))