Advertisement
Guest User

Untitled

a guest
Jul 31st, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. var tmi = require("tmi.js");
  2.  
  3. var options = {
  4. options: {
  5. debug: true
  6. },
  7. connection: {
  8. reconnect: true
  9. },
  10. identity: {
  11. username: "WhaleHelloThere",
  12. password: "oauth:oauth:Dont want to show"
  13. },
  14. channels: ["#captainfrasse"]
  15. };
  16.  
  17. var client = new tmi.client(options);
  18.  
  19. // Connect the client to the server..
  20. client.connect();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement