BLEST Ruby
The Ruby reference implementation of BLEST (Batch-able, Lightweight, Encrypted State Transfer), an improved communication protocol for web APIs which leverages JSON, supports request batching by default, and provides a modern alternative to REST.
To learn more about BLEST, please visit the website: https://blest.jhunt.dev
For a front-end implementation in React, please visit https://github.com/jhuntdev/blest-react
Features
- Built on JSON - Reduce parsing time and overhead
- Request Batching - Save bandwidth and reduce load times
- Compact Payloads - Save even more bandwidth
- Single Endpoint - Reduce complexity and facilitate introspection
- Fully Encrypted - Improve data privacy
Installation
Install BLEST Ruby from Rubygems.
gem install blest
Usage
Router
The following example uses Sinatra.
require 'sinatra'
require 'json'
require 'blest'
router = Router.new(timeout: 1000)
router.before do |body, context|
if context.dig('headers', 'auth') == 'myToken'?
context['user'] = {
}
nil
else
raise RuntimeError, "Unauthorized"
end
end
router.route('greet') do |body, context|
{
greeting: "Hi, #{body['name']}!"
}
end
post '/' do
json_body = JSON.parse(request.body.read)
headers = request.env.select { |k, _| k.start_with?('HTTP_') }
result, error = router.handle.call(json_body, { 'headers' => headers })
content_type :json
if error
raise Sinatra::Error.new(error.status || 500, error)
else
result
end
end
HttpClient
require 'blest'
client = HttpClient.new('http://localhost:8080', max_batch_size = 25, buffer_delay = 10, http_headers = {
'Authorization': 'Bearer token'
})
begin
result = client.request('greet', { 'name': 'Steve' }, { 'auth': 'myToken' }).value
rescue => error
end
License
This project is licensed under the MIT License.