
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
= bayeux.rack
Bayeux (COMET or long-polling) protocol server as a Sinatra application. Light weight and high scalability are achieved by using the asynchronous Rack extensions added to Thin by async_sinatra.
Because it uses async_sinatra, which uses EventMachine, it won't work in Passenger. Sorry about that, but Apache doesn't really like long-polling anyhow. Use Thin.
You can see a video presentation of this code here: http://www.youtube.com/watch?v=Bhj9QOfNd4c
== Usage
See http://github.com/cjheath/jquery.comet for an example of usage and for a COMET client in Javascript.
class MyServer < Bayeux configure do # The default :public is inside the Bayeux gem set :public, File.dirname(FILE) end
def deliver message
case channel_name = message['channel']
when '/my/interesting/channel'
data = message['data']
if data == 'ping'
publish :channel => channel_name, :data => 'pong'
else
super
end
else
super
end
end
end
== Installing
gem install bayeux-rack
== License
The MIT license.
== Developing
Fork on github https://github.com/cjheath/bayeux-rack or just clone to play:
git clone git://github.com/cjheath/bayeux-rack.git
Patches welcome! Fork and send a pull request. Please follow coding conventions already in use. Please use jslint if you can. There are currently no warnings, please keep it that way.
== Status
Current release has a happy path (working ok). Significant drawbacks to be fixed are:
FAQs
Unknown package
We found that bayeux-rack demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.