DrunkMonkey
DrunkMonkey is a rack middleware providing realtime two-way http communication with API for Portal.
Supported servers
You should use servers which supports Rack hijacking API, such as follows:
Installation
Add this line to your application's Gemfile:
gem 'drunkmonkey'
And then execute:
$ bundle
Or install it yourself as:
$ gem install drunkmonkey
Usage
Add DrunkMonkey::Builder to Rack application by use method.
Plain Rack:
app = Rack::Builder.new do
use DrunkMonkey::Middleware do
on :message do |socket, message|
socket.push "ECHO: #{message}"
end
end
end
run app
Sinatra:
require "sinatra"
use DrunkMonkey::Middleware do
on :message do |socket, message|
socket.push "ECHO: #{message}"
end
end
Note: the passed block will be executed once when use is called at first.
Then, include Portal to HTML and initialize it as follows.
<script src="/portal.js"></script>
<script>
var options = {
transports:["ws","longpollajax"],
reconnect:function(lastDelay,attempts){
if(options.transports.length > 1)
options.transports.shift();
return 2 * (lastDelay || 100);},
prepare:function(connect,disconnect,opts){
opts.transports = options.transports;connect();}
};
var socket = portal.open("/drunkmonkey",options).on("open",function(){
socket.send("Hello!");
});
</script>
Note: in current version, supported transports by Drunkmonkey are websocket and long-poll ajax only.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request