A simple asynchronous websocket client/server implementation.
Add this line to your application's Gemfile:
gem 'async-websocket'
And then execute:
$ bundle
Or install it yourself as:
$ gem install async-websocket
There are examples which include:
- A command line chat client and application server which can read input from
stdin
and send messages to the server. - A utopia-based web application which uses a JavaScript client to connect to a web application server.
#!/usr/bin/env ruby
require 'async'
require 'async/io/stream'
require 'async/http/url_endpoint'
require 'async/websocket/client'
USER = ARGV.pop || "anonymous"
URL = ARGV.pop || "ws://localhost:9292"
Async do |task|
endpoint = Async::HTTP::URLEndpoint.parse(URL)
headers = {'token' => 'wubalubadubdub'}
endpoint.connect do |socket|
connection = Async::WebSocket::Client.new(socket, URL, headers)
connection.send_message({
user: USER,
status: "connected",
})
while message = connection.next_message
puts message.inspect
end
end
end
#!/usr/bin/env falcon serve --concurrency 1 -c
require 'async/websocket/server'
$connections = []
run lambda {|env|
# Options for websocket-driver-ruby can be passed as second argument to open
# Supported options here: https://github.com/faye/websocket-driver-ruby#driver-api
Async::WebSocket::Server.open(env, protocols: ['ws']) do |connection|
$connections << connection
while message = connection.next_message
$connections.each do |connection|
connection.send_message(message)
end
end
end
[200, {}, ["Hello World"]]
}
- 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
Released under the MIT license.
Copyright, 2015, by Samuel G. D. Williams.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.