Skip to content

Instantly share code, notes, and snippets.

@vincentsimard
Created December 20, 2015 00:56
Show Gist options
  • Save vincentsimard/ba77e4d7ea17191ae19a to your computer and use it in GitHub Desktop.
Save vincentsimard/ba77e4d7ea17191ae19a to your computer and use it in GitHub Desktop.
yummybot update
#!/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