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
0
votes
1 answer

Ruby/Juggernaut error - Errno::ECONNREFUSED (Connection refused...)

I'm playing around with https://github.com/elii/Cappuccino-X-Juggernaut, which is basically a juggernaut chat for rails, and I get the following errors when I try to submit a post. Could someone tell me where this error is coming from? Please tell…
user852974
  • 2,242
  • 10
  • 41
  • 65
0
votes
2 answers

Persistent "Cannot find module" errors when installing juggernaut in OS X and Rails 3

I started with a blank install of Lion, installed Xcode 4.1, then followed the instructions at http://pragmaticstudio.com/blog/2010/9/23/install-rails-ruby-mac to install rvm, sqlite3, rails and then installed node v0.2.5 and redis v2.0.4. I then…
user852974
  • 2,242
  • 10
  • 41
  • 65
0
votes
1 answer

Error starting Juggernaut

When I try to start Juggernaut I get this error : 1 Apr 20:21:01 - socket.io ready - accepting connections node_redis: no callback to send error: ERR unknown command 'subscribe' node.js:134 throw e; // process.nextTick error, or 'error'…
William
  • 199
  • 3
  • 8
0
votes
1 answer

Installing Juggernaut on Windows

I'm developing a chatroom app in Rails and have read that Juggernaut is the best option. Has anyone seen a tutorial for getting it started on Windows? I can't seem to find any up-to-date tutorials online.
John
  • 5,835
  • 8
  • 28
  • 36
0
votes
1 answer

Does Juggernaut work on Heroku?

I'm building a Rails app that includes live group chat. I've heard Juggernaut is the best option for this. Does it work on Heroku?
John
  • 5,835
  • 8
  • 28
  • 36
0
votes
1 answer

Catching juggernaut income message

How to put the juggernaut push messages to show it in html in browser? thanks in advance..
Aditya Hadi
  • 364
  • 1
  • 4
  • 17
0
votes
0 answers

Any Juggernaut alternative for GWT

Is it possible to use Juggernaut with GWT or does anyone know of an engine for GWT that provides realtime server connection like Juggernaut for Rails?
0
votes
1 answer

How to silent default juggernaut alert in firefox?

I'm using the Juggernaut plugin in a rails application. http://github.com/maccman/juggernaut_plugin I can't find how to disable the alert() when running my app in Firefox. Any Ideas ?
fro_oo
  • 1,610
  • 4
  • 24
  • 46
0
votes
1 answer

juggernaut error

i am trying to experiment with Juggernaut plugin using chat_sandbox example. i get this error message Juggernaut: There has been an error connecting on 127.0.0.1:5001 I have no idea what it means. my juggernaut.yml is as follows :hosts: - :port:…
ZX12R
  • 4,760
  • 8
  • 38
  • 53
0
votes
1 answer

integrating a chat module to existing ruby app

I have a rails application (Rails3 / ruby 1.9.x), and my client wants a chat to be integrated with the application (Ex: like in 'facebook'), So I would like to know what are my options are and what would be the best approach, following are the…
sameera207
  • 16,547
  • 19
  • 87
  • 152
0
votes
1 answer

Unable to install juggernaut using npm on mac Os X - version 10.7.4

I followed the link below to install npm http://shapeshed.com/setting-up-nodejs-and-npm-on-mac-osx/ Node -v 0.8.2 was installed properly. Then I used the following command to install npm curl http://npmjs.org/install.sh | sh but I got an error…
Abhimanyu
  • 377
  • 1
  • 4
  • 10
0
votes
1 answer

Rails app: Reconnect juggernaut redis after forking?

I'm working on a Rails app that is using Juggernaut to push data to clients at regular intervals. I use a controller action to get the pushing started; but since the pushing is often a long process (10 minutes or more), I am using spawn to fork the…
Alex Watt
  • 927
  • 5
  • 14
0
votes
1 answer

Serving Juggernaut 2 over pure HTTPS connection

I have a Ruby on Rails website at which I force all connections to be SSL. I need all connections from that site to use HTTPS as well. Also, Google Chrome will automatically switch to HTTPS even if I connect to another port. This means that I cannot…
Christoffer Reijer
  • 1,925
  • 2
  • 21
  • 40
0
votes
1 answer

juggernaut cocoa for iphone breaks with Apple Mach-O Linker (id) Error

I tried using juggernaut cocoa: https://github.com/fpotter/juggernaut-cocoa Added this line to my code: JuggernautClient *client = [[JuggernautClient alloc] initWithHost:@"myhost" port:1740]; [client subscribe:[NSString…
JohnMerlino
  • 3,900
  • 4
  • 57
  • 89
0
votes
3 answers

Implementing chat in Rails

I am trying to implement a chat module in my rails application. I looked into this railscast Faye tutorial. More through the tutorial, Ryan mentions about broadcasting the messages but what I want is more like private conversations between the…
Rahul
  • 44,892
  • 25
  • 73
  • 103