Realtime server push with node.js, WebSockets and Comet
0
votes
0answers
5 views
can i make the subscribe method in juggernaut takes an array of channels? just like the publish method
I found some example code here.
Juggernaut.publish(["channel1", "channel2"], ["foo", "bar"])
so can I do something to make the subscribe method takes a lot channels.thx.
0
votes
1answer
73 views
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 ...
2
votes
2answers
233 views
Send real time data to client with juggernaut
I have tried to use the juggernaut framework for flask in order to send real-time information to the client browser followinf the flask snippet at http://flask.pocoo.org/snippets/80/.
When I try to ...
1
vote
1answer
734 views
Can flask framework send real-time data from server to client browser?
I was wondering how (if at all) flask performs long polling, so the server can send data over a connection to the client. For example if the server receives a twitter feed via the streaming api how ...
0
votes
0answers
77 views
Juggernaut client not working under windows
I am using Juggernaut (2.1.1) on with rails 3.1.3, I was able to get things running
Client:
juggernaut.subscribe("channel", function(data){
console.log('connected');
});
Server:
...
12
votes
1answer
2k views
How to implement server push in Flask framework?
I am trying to build a small site with the server push functionality on Flask micro-web framework, but I did not know if there is a framework to work with directly.
I used Juggernaut ...
0
votes
1answer
102 views
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 ...
0
votes
1answer
540 views
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 ...
0
votes
1answer
90 views
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 ...
0
votes
1answer
61 views
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" ...
-1
votes
2answers
766 views
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 ...
1
vote
1answer
197 views
How to communicate with threads in Ruby?
I'm building a real time game, mostly chat based, and I need to have many of these chats running concurrently, receiving and sending data through web sockets.
I have been told that instead of ...
0
votes
1answer
106 views
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 ...
0
votes
2answers
354 views
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 ...
8
votes
2answers
2k views
Juggernaut/Faye vs. Pusher for a Heroku hosted web service?
If I understand correctly, Juggernaut is built on top of socket.io, and Faye competes with Juggernaut layer and socket.io layer combined. Recently Ryan Bates came up with a Faye wrapper called ...
0
votes
1answer
278 views
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
0
votes
1answer
282 views
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 ...
1
vote
2answers
665 views
What is the alternative for Juggernaut in Rails 3.0.7?
I have learnt that Juggernaut is not supported on Rails 3.0.7.
Are there any other options around ?
0
votes
1answer
170 views
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 ...
0
votes
1answer
286 views
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 ...
4
votes
1answer
462 views
Rails 3.1 working with Socket.io/Juggernaut on Ubuntu 11.10
I couldn't get Juggernaut/Socket.IO running on Windows so I took a shot at getting it running on Linux. I don't know much Linux (or Rails for that matter). I can't get Socket.io/Juggernaut working on ...
1
vote
0answers
444 views
Node.js/NPM and Juggernaut Install on Windows 7
I've edited my original question after discovering perhaps the root of my problem (Juggernaut is not working in my Rails app, regardless of the Juggernaut gem and Redis-server working OK):
After ...
1
vote
0answers
227 views
Using Juggernaut can you subscribe to and publish wildcard Redis events?
In the same way Redis provides a PSUBSCRIBE interface for wildcard events, can you subscribe to wildcards from the client (browser) using Juggernaut? I'm looking for something like this:
From the ...
0
votes
1answer
434 views
Error when running Jugernaut
I just installed NodeSJ and Juggernaut (yes, and redis too) on windows server (64 bits)
It is not working ... It seems, by the evaluations, that is just install and run.
This is the error I get:
...
0
votes
2answers
219 views
Juggernaut on a https website
I'm trying to use Juggernaut 2 on a website that uses HTTPS. I don't need Juggernaut itself to use https per se.
So, I'm trying to load the required application.js from Juggernaut's own webserver at ...
9
votes
3answers
602 views
Working example of Rails 3.1 + Juggernaut Instant Messenger?
Are there any decent example apps for an ruby on rails 3 instant Messenger app based on any of the publish-subscribe messaging system Juggernaut?
1-1 chat with method of adding 2 users to a ...
0
votes
1answer
347 views
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 ...
0
votes
2answers
453 views
Rails 3: Passing a string from Ruby to Javascript?
The Jist:
In a <script type="text/javascript"> I want to access a static (won't ever change after Rails delivers page to client) string from Ruby to Javascript.
More Detail (AKA: Why I want to ...
1
vote
2answers
2k views
How to run redis server and juggernaut server in production mode
I am using juggernaut push server. How to start redis and juggernaut in production mode cause I
juggernaut
or
redis-server will keep on showing me log etc.
I am using ruby on rails 3.
EDIT
I ...
0
votes
2answers
417 views
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 ...
0
votes
1answer
621 views
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 ...
2
votes
2answers
1k views
How to integrate Juggernaut chat server (Powered by ruby on rails) with iPhone/Android app for real time chat?
Preview:
I am using juggernaut chat server.I am having redis and juggernaut server running on machine. I am able to do chats within my local network on vaious web browsers. Everything is working ...
1
vote
1answer
612 views
Getting a chat app running on Heroku
I have a chat app on the heroku cedar stack based on juggernaut2 = https://github.com/maccman/juggernaut and I found out that the Cedar stack is currently built around the assumption that you'll use ...
0
votes
1answer
115 views
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 ...
0
votes
1answer
291 views
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 ...
2
votes
1answer
862 views
Listening to Juggernaut events from Rails
I'm building a simple real time chat using Juggernaut, Redis, SQLite and Rails 3.1
I want to write a new message to every user when another has been disconnected (for instance he closed the window), ...
1
vote
1answer
104 views
Handling latency while synchronizing client-side timers using Juggernaut
I need to implement a draft application for a fantasy sports website. Each users will have 1m30 to choose a player on its team and if that time has elapsed it will be selected automatically. Our ...
0
votes
1answer
388 views
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 ...
2
votes
1answer
327 views
Cannot Install npm on Mac 10.6.4 Strange Errors
MacPro:macpro fred$ curl http://npmjs.org/install.sh | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent ...
2
votes
2answers
656 views
'else without rescue is useless' and 'require' juggernaut/ruby problems on Mac 10.6
1. Install Ruby on Rails
sudo gem install rails
2. Install the Juggernaut Gem
sudo gem install juggernaut
3. Download the demo app and unpack it.
4. Start the Rails application
ruby script/server
...
0
votes
2answers
3k views
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 ...
1
vote
0answers
185 views
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 ...
4
votes
1answer
989 views
Juggernaut / Socket.io and authenticating single-user channel subscription
I'm new to Node JS and Socket IO, but I've heard a lot of good things about them so I wanted to take a look at them for use as a realtime notification system.
In my scenario, a user will open a ...
0
votes
1answer
932 views
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
...
2
votes
1answer
588 views
Anyone tried to Juggernaut with php (nodejs)
I am trying to make a real-time publish/scribe module using juggernaut(nodejs plugin)
Juggernaut's client is usually Ruby not php. but, my project's main language is php.
so I have to make some php ...
0
votes
1answer
352 views
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 ...
3
votes
3answers
750 views
Server Side Timers with Juggernaut 2
I am writing a rails app with Juggernaut 2 for real-time push notifications and am not sure how to approach this problem. I have a number of users in a chat room and I would like to run a timer so ...
0
votes
1answer
1k views
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?
4
votes
2answers
2k views
Rails - syncing - Faye, Juggernaut, Cool.io, plain old eventmachine
I have a need for syncing and have choice overload. It seems like the options available include: Faye, Juggernaut, Cool.io, plain old eventmachine
Any suggestions? What are the most popular, ...
64
votes
3answers
15k views
Faye vs. Socket.IO (and Juggernaut)
Socket.IO seems to be the most popular and active WebSocket emulation library. Juggernaut uses it to create a complete pub/sub system.
Faye is also popular and active, and has its own javascript ...