![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
= 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.