![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.
A Lite™ wrapper around the Joyent http-parser goodness for Ruby
gem install http-parser-lite
parser = HTTP::Parser.new
parser.on_message_begin do
puts "message begin"
end
parser.on_message_complete do
puts "message complete"
end
parser.on_status_complete do
puts "status complete"
end
parser.on_headers_complete do
puts "headers complete"
end
parser.on_url do |url|
puts "url: #{url}"
end
parser.on_header_field do |name|
puts "field: #{name}"
end
parser.on_header_value do |value|
puts "value: #{value}"
end
parser.on_body do |body|
puts "body: #{body}"
end
parser << "HTTP/1.1 200 OK\r\n"
parser << "Content-Type: text/plain;charset=utf-8\r\n"
parser << "Content-Length: 5\r\n"
parser << "Connection: close\r\n\r\n"
parser << "hello"
parser.reset
parser << "GET http://www.google.com/ HTTP/1.1\r\n\r\n"
HTTP::Parser
.new(type = HTTP::Parser::TYPE_BOTH)
#reset(type = nil)
#parse(data)
#<<(data)
#on_message_begin(&block)
#on_message_complete(&block)
#on_url(&block)
#on_status_complete(&block)
#on_header_field(&block)
#on_header_value(&block)
#on_headers_complete(&block)
#on_body(&block)
#http_status
#http_method
#http_version
#pause
#resume
#paused?
#error?
#error
Constants:
* HTTP::Parser::TYPE_REQUEST
* HTTP::Parser::TYPE_RESPONSE
* HTTP::Parser::TYPE_BOTH
Exceptions:
* HTTP::Parser::Error
Based on flyerhzm/http-parser.java, some code has been borrowed from http_parser.rb
MIT
FAQs
Unknown package
We found that http-parser-lite demonstrated a healthy version release cadence and project activity because the last version was released less than 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.