Advertisement
Guest User

Untitled

a guest
Apr 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. const tmi = require('tmi.js');
  2.  
  3. const options = {
  4. options: {
  5. debug: true
  6. },
  7. connection: {
  8. reconnect: true,
  9. secure: true
  10. },
  11. identity: {
  12. username: "michaelforreason"
  13. password: "---"
  14. },
  15. channels: ['xrepto']
  16. };
  17.  
  18. const client = new tmi.client(options);
  19. client.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement