Skip to content

Latest commit

 

History

History
45 lines (29 loc) · 771 Bytes

README.md

File metadata and controls

45 lines (29 loc) · 771 Bytes

youtube-live-chat

Build Status

A library for get YouTube live chats

Demo

const YouTube = require('youtube-live-chat');

const yt = new YouTube('CHANNEL_ID_IS_HERE', 'APIKEY_IS_HERE');

yt.on('ready', () => {
  console.log('ready!')
  yt.listen(1000)
})

yt.on('message', data => {
  console.log(data.snippet.displayMessage)
})

yt.on('error', error => {
  console.error(error)
})

Requirement

  • events ^1.1.1
  • request ^2.81.0

Install

$ npm install --save youtube-live-chat

License

MIT

Author

yuta0801