Created
December 20, 2015 00:56
-
-
Save vincentsimard/ba77e4d7ea17191ae19a to your computer and use it in GitHub Desktop.
yummybot update
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
'use strict'; | |
var nconf = require('nconf'); | |
var colors = require('colors'); | |
var client = require('./src/Client.js'); | |
var cli = require('./src/CLI.js'); | |
var handlers = require('./src/EventHandlers.js'); | |
var config = nconf | |
.argv() | |
.env() | |
.file({ file: 'config.json' }) | |
.get(); | |
var loadTheme = function(name) { | |
if (typeof name === 'undefined') { name = 'default'; } | |
var THEME_PATH = __dirname + '/src/themes/'; | |
colors.setTheme(THEME_PATH + name + '.js'); | |
}; | |
var init = function() { | |
loadTheme(config.theme); | |
cli.init(); | |
handlers.init(); | |
client.connect(function() { | |
console.log('*** connected.'.info); | |
client.send('quote CAP REQ :twitch.tv/membership'); | |
}); | |
}; | |
init(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment