Questions tagged [juggernaut]

Realtime server push with node.js, WebSockets and Comet

Juggernaut gives you a realtime connection between your servers and client browsers. You can literally push data to clients using your web application, which lets you do awesome things like multiplayer gaming, chat, group collaboration and more.

Juggernaut is built on top of Node.js and is super simple and easy to get going.

62 questions
1
vote
0 answers

Error when installing juggernaut on rails. juggernaut -g juggernaut.yml

I followed the instructions for creating a basic juggernaut chat in rails here but I get the following error when running juggernaut -g juggernaut.yml All the steps before this went smoothly. Any help would be appreciated. MacPro:simplechat fred$…
user852974
  • 2,242
  • 10
  • 41
  • 65
1
vote
1 answer

Rails 3- fixing juggernaut involving template and JS generator

I'm using the original Juggernaut (not Juggernaut 2) with Rails 3. In the lib/juggernaut.rb, it breaks due to not being able to find @template. According to this other post, @template is not provided in controllers in Rails 3. How can I fix the…
Grnbeagle
  • 1,751
  • 2
  • 16
  • 26
1
vote
2 answers

How to test Rails Juggernaut in Internet Explorer?

I'm having problem with my Rails application. I use juggernaut for server push, which works very nice in Firefox, Opera and Chrome, but it doesn't work at all in IE. It should be compatible with IE6+. The problem is, that I can't find any debugging…
Jakub Arnold
  • 85,596
  • 89
  • 230
  • 327
1
vote
1 answer

Streaming, Daemons, Cronjobs, how do you use them? (in Ruby)

I've finally had a second to look into streaming, daemons, and cron tasks and all the neat gems built around them! But I'm not clear on how/when to use these things. I have a few questions: 1) If I wanted to have a website that stayed constantly…
Lance
  • 75,200
  • 93
  • 289
  • 503
0
votes
1 answer

Connect to Juggernaut with Ruby

require "juggernaut" Juggernaut.publish("channel1", "Some data") The code above works if Juggernaut is on the same server as the one running the code. What's the syntax to use a Juggernaut running on another server?
primary0
  • 1,180
  • 1
  • 10
  • 21
0
votes
2 answers

trouble using juggernaut as a rails plugin

i am developing a rails plugin, in which i want a model where server will notify updates to all the connected clients. for simplicity say, on certain event server will say 'hi there is an update' to all the clients. i came across juggernaut plugin…
hitesh israni
  • 1,742
  • 4
  • 25
  • 48
0
votes
1 answer

Start Juggernaut and Redis with rails app

I'm developing a app with Ruby on Rails. It uses juggernaut. Is there anyway I can get redis and juggernaut to start when I run rails server. thanks
Sam Baumgarten
  • 2,231
  • 3
  • 21
  • 46
0
votes
1 answer

Juggernaut gem for game server

It's about latest Juggernaut gem (https://github.com/maccman/juggernaut) I'm thinking of architecture, for, let's say, 'Dots games'. This meta-game is very simple: each logged in user (subscribed to channel, in terms of Juggernaut) is a dot of…
There Are Four Lights
  • 1,406
  • 3
  • 19
  • 35
0
votes
1 answer

Error when starting juggernaut server

I am trying to integrate Spine with Juggernaut. When i start juggernaut server i m getting the following error spritle@ubuntu:/usr/local/lib/node_modules/juggernaut$ juggernaut info - socket.io started node_redis: no callback to send error: ERR…
vinothini
  • 2,606
  • 4
  • 27
  • 42
0
votes
1 answer

Integrate Spine with juggernaut

I am trying to integrate Spine with Juggernaut. First I tried to clone fowa branch (https://github.com/maccman/spine.rails3/tree/fowa) but I am not able to clone that branch so I am doing app myself following by maccman/spine.rails3 instead of…
vinothini
  • 2,606
  • 4
  • 27
  • 42
0
votes
1 answer

Realtime Streaming per User via some Comet Server

I need to design a Streaming API where each connected user might have different data per category. Lets say two users are interested in sport(category) rss feeds from the streaming api but each user has its own filtering mechanism on the server…
Mesut
  • 916
  • 1
  • 7
  • 17
0
votes
2 answers

Should I use node.js + express or Rails + Juggernaut to build a chat room?

I'm trying to build a chatroom in the conventional sense to operate in the browser but with a decent API layer allowing for decent abstraction between the server and the client. I want to keep it SIMPLE, but still have room to develop extra…
cjm2671
  • 18,348
  • 31
  • 102
  • 161
0
votes
1 answer

juggernaut file serving

I am developing real-time notifier with juggernaut As you know, when client try to connect, juggernaut serves files which is in its public directory. so the processing is like this: (1)browser connect 8080 port (juggernaut listening…
Jinbom Heo
  • 7,248
  • 14
  • 52
  • 59
0
votes
1 answer

How do I implement a text input section along with the send button in juggernaut?

I have followed the exact guidelines on github and I am on the final step of: "That's it! Now go to http://localhost:8080 to see Juggernaut in action." A dialog box is displayed. However, I am unable to write any text. I would like to be able to…
Tony
  • 981
  • 5
  • 16
  • 30
0
votes
1 answer

How do I set up a functional chat box layout with ruby on rails after I have gotten juggernaut to work?

I just finished implementing juggernaut. I ran both the redis server and juggernaut and they work fine. I have tested out the local host using irb and texts do appear. I've basically followed the steps on…
Tony
  • 981
  • 5
  • 16
  • 30