Sunday, May 19, 2024
 Popular · Latest · Hot · Upcoming
96
rated 0 times [  101] [ 5]  / answers: 1 / hits: 27678  / 10 Years ago, sun, january 11, 2015, 12:00:00

I am trying to build a simple IRC bot for Twitch in Node.js with this framework https://github.com/Schmoopiie/twitch-irc that can connect to the API and check certain things, in this reference I will be checking the followers on the current channel the bot is located in. Except I am running into an error, I keep getting this error logged below.



[31mcrash[39m: ReferenceError: $ is not defined
at client.<anonymous> (C:UsersExuviaxDesktopnode.jsbot.js:157:9)
at client.emit (events.js:117:20)
at C:UsersExuviaxDesktopnode.jsnode_modulestwitch-irclibraryclient.js:657:30
at Object.createChannelUserData (C:UsersExuviaxDesktopnode.jsnode_modulestwitch-irclibrarydata.js:56:2)
at client._handleMessage (C:UsersExuviaxDesktopnode.jsnode_modulestwitch-irclibraryclient.js:651:22)
at Stream.emit (events.js:95:17)
at drain (C:UsersExuviaxDesktopnode.jsnode_modulestwitch-ircnode_modulesirc-message-streamnode_modulesthroughindex.js:36:16)
at Stream.stream.queue.stream.push (C:UsersExuviaxDesktopnode.jsnode_modulestwitch-ircnode_modulesirc-message-streamnode_modulesthroughindex.js:45:5)
at LineStream.<anonymous> (C:UsersExuviaxDesktopnode.jsnode_modulestwitch-ircnode_modulesirc-message-streamindex.js:22:16)
at LineStream.emit (events.js:95:17)


This is the code that I am using to run, in order to check the API



var irc = require('twitch-irc');
var colors = require('colors');
var jQuery = require('jQuery')
var jsdom = require(jsdom);
var window = jsdom.jsdom().parentWindow;

jsdom.jQueryify(window, http://code.jquery.com/jquery-2.1.3.min.js, function () {
var $ = window.$;
$(body).prepend(<h1>The title</h1>);
console.log($(h1).html());
});

// Calling a new client..
var client = new irc.client({
options: {
debug: true,
debugIgnore: ['ping', 'chat', 'action'],
logging: true,
tc: 3
},
identity: {
username: 'BotName',
password: 'oauth:Code'
},
channels: ['#my', '#first', '#connect', '#channels']
});

// Connect the client to server..
client.connect();

client.addListener('chat', function(channel, user, message) {
if (message.indexOf('!followers') === 0) {
var channels = channel
channels = channels.replace('#', '');
$.getJSON('https://api.twitch.tv/kraken/channels/' + channels + '.json?callback=?', function(data) {
var followers = data.followers
client.say(channel, Current Followers: + followers);
console.log(Followers for + channel + + followers);
});
}

});


I have been attempting to get this refferenceerror to go away for hours, but I am just not familiar enough with using JS and JQ outside of the browser environment to produce any results, any insight would be much appreciated.


More From » jquery

 Answers
25

Be sure to use the $ symbol equals require('jquery') inside each module you will be using jQuery.



The proper syntax is:



var $ = require(jquery);


For more information visit package.


[#68249] Thursday, January 8, 2015, 10 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
aileent

Total Points: 556
Total Questions: 107
Total Answers: 101

Location: Croatia
Member since Fri, Sep 11, 2020
4 Years ago
;