All Projects → hanami → Api

hanami / Api

Minimal, extremely fast, lightweight Ruby framework for HTTP APIs

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Api

Foxify
The fast, easy to use & typescript ready web framework for Node.js
Stars: ✭ 138 (-45.24%)
Mutual labels:  api, performance, speed
Performance Improvements For Woocommerce
Performance tweaks for the front-end and back-end of a store.
Stars: ✭ 46 (-81.75%)
Mutual labels:  performance, speed
Uplot
📈 A small, fast chart for time series, lines, areas, ohlc & bars
Stars: ✭ 6,808 (+2601.59%)
Mutual labels:  lightweight, performance
React Pinpoint
An open source utility library for measuring React component render times.
Stars: ✭ 93 (-63.1%)
Mutual labels:  performance, speed
Swagger Stats
API Observability. Trace API calls and Monitor API performance, health and usage statistics in Node.js Microservices.
Stars: ✭ 559 (+121.83%)
Mutual labels:  api, performance
Ngx Quicklink
Quicklink prefetching strategy for the Angular router
Stars: ✭ 586 (+132.54%)
Mutual labels:  performance, speed
Quicklink
⚡️Faster subsequent page-loads by prefetching in-viewport links during idle time
Stars: ✭ 9,176 (+3541.27%)
Mutual labels:  performance, speed
Fastify
Fast and low overhead web framework, for Node.js
Stars: ✭ 21,489 (+8427.38%)
Mutual labels:  performance, speed
Crepe
The thin API stack.
Stars: ✭ 120 (-52.38%)
Mutual labels:  api, lightweight
Onemkl
oneAPI Math Kernel Library (oneMKL) Interfaces
Stars: ✭ 122 (-51.59%)
Mutual labels:  api, performance
Bloom
🌸 HTTP REST API caching middleware, to be used between load balancers and REST API workers.
Stars: ✭ 553 (+119.44%)
Mutual labels:  performance, speed
Cms
GleezCMS - A Light, Simple, Flexible Content Management System
Stars: ✭ 200 (-20.63%)
Mutual labels:  lightweight, performance
Gearbox
Gearbox ⚙️ is a web framework written in Go with a focus on high performance
Stars: ✭ 455 (+80.56%)
Mutual labels:  api, performance
Pcp
Performance Co-Pilot
Stars: ✭ 716 (+184.13%)
Mutual labels:  lightweight, performance
Prerender.js
Fast webpages for all browsers.
Stars: ✭ 411 (+63.1%)
Mutual labels:  performance, speed
Torchlambda
Lightweight tool to deploy PyTorch models to AWS Lambda
Stars: ✭ 83 (-67.06%)
Mutual labels:  lightweight, performance
Stagesepx
detect stages in video automatically
Stars: ✭ 293 (+16.27%)
Mutual labels:  lightweight, performance
Viperhtml
Isomorphic hyperHTML
Stars: ✭ 318 (+26.19%)
Mutual labels:  lightweight, performance
Xseries
Library for cross-version Minecraft Bukkit support and various efficient API methods.
Stars: ✭ 109 (-56.75%)
Mutual labels:  api, performance
Flying Pages
Load inner pages instantly, intelligently
Stars: ✭ 169 (-32.94%)
Mutual labels:  performance, speed

Hanami::API

Minimal, extremely fast, lightweight Ruby framework for HTTP APIs.

Installation

Add this line to your application's Gemfile:

gem "hanami-api"

And then execute:

$ bundle install

Or install it yourself as:

$ gem install hanami-api

Performance

Benchmark against an app with 10,000 routes, hitting the 10,000th to measure the worst case scenario. Based on jeremyevans/r10k, Hanami::API scores first for speed, and second for memory footprint.

Runtime

Runtime to complete 20,000 requests (lower is better).

Framework Seconds to complete
hanami-api 0.116
watts 0.235
roda 0.348
syro 0.356
rack-app 0.623
cuba 1.291
rails 17.047
sinatra 197.477

Memory

Memory footprint for 10,000 routes app (lower is better).

Framework Bytes
roda 47252
hanami-api 53988
cuba 55420
syro 60256
rack-app 82976
watts 84956
sinatra 124980
rails 143048

Requests per second

For this benchmark there are two apps for each framework: one with the root route, and one with 10,000 routes. Requests per second hitting the 1st (and only route) and the 10,000th route to measure the best and worst case scenario (higher is better).

Framework 1st route 10,000th route
hanami-api 14719.95 14290.20
watts 13912.31 12609.68
roda 13965.20 11051.27
syro 13079.12 10689.51
rack-app 10274.01 10306.46
cuba 13061.82 7084.33
rails 1345.27 303.06
sinatra 5038.74 28.14

Usage

Create config.ru at the root of your project:

# frozen_string_literal: true

require "bundler/setup"
require "hanami/api"

class App < Hanami::API
  get "/" do
    "Hello, world"
  end
end

run App.new

Start the Rack server with bundle exec rackup

Routes

A route is a combination of three elements:

  • HTTP method (e.g. get)
  • Path (e.g. "/")
  • Endpoint (e.g. MyEndpoint.new)
get "/", to: MyEndpoint.new

HTTP methods

Hanami::API supports the following HTTP methods:

  • get
  • head
  • post
  • patch
  • put
  • delete
  • options
  • trace
  • link
  • unlink

Endpoints

Hanami::API supports two kind of endpoints: block and Rack.

Rack endpoint

The framework is compatible with Rack. Any Rack endpoint, can be passed to the route:

get "/", to: MyRackEndpoint.new

Block endpoint

A block passed to the route definition is named a block endpoint. The returning value will compose the Rack response. It can be:

String (body)
get "/" do
  "Hello, world"
end

It will return [200, {}, ["Hello, world"]]

Integer (status code)
get "/" do
  418
end

It will return [418, {}, ["I'm a teapot"]]

Integer, String (status code, body)
get "/" do
  [401, "You shall not pass"]
end

It will return [401, {}, ["You shall not pass"]]

Integer, Hash, String (status code, headers, body)
get "/" do
  [401, {"X-Custom-Header" => "foo"}, "You shall not pass"]
end

It will return [401, {"X-Custom-Header" => "foo"}, ["You shall not pass"]]

Block context

When using the block syntax there is a rich API to use.

env

The #env method exposes the Rack environment for the current request

status

Get HTTP status

get "/" do
  puts status
    # => 200
end

Set HTTP status

get "/" do
  status(201)
end

headers

Get HTTP response headers

get "/" do
  puts headers
    # => {}
end

Set HTTP status

get "/" do
  headers["X-My-Header"] = "OK"
end

body

Get HTTP response body

get "/" do
  puts body
    # => nil
end

Set HTTP response body

get "/" do
  body "Hello, world"
end

params

Access params for current request

get "/" do
  id = params[:id]
  # ...
end

halt

Halts the flow of the block and immediately returns with the current HTTP status

get "/authenticate" do
  halt(401)

  # this code will never be reached
end

It sets a Rack response: [401, {}, ["Unauthorized"]]

get "/authenticate" do
  halt(401, "You shall not pass")

  # this code will never be reached
end

It sets a Rack response: [401, {}, ["You shall not pass"]]

redirect

Redirects request and immediately halts it

get "/legacy" do
  redirect "/dashboard"

  # this code will never be reached
end

It sets a Rack response: [301, {"Location" => "/new"}, ["Moved Permanently"]]

get "/legacy" do
  redirect "/dashboard", 302

  # this code will never be reached
end

It sets a Rack response: [302, {"Location" => "/new"}, ["Moved"]]

back

Utility for redirect back using HTTP request header HTTP_REFERER

get "/authenticate" do
  if authenticate(env)
    redirect back
  else
    # ...
  end
end

json

Sets a JSON response for the given object

get "/user/:id" do
  user = UserRepository.new.find(params[:id])
  json(user)
end
get "/user/:id" do
  user = UserRepository.new.find(params[:id])
  json(user, "application/vnd.api+json")
end

Scope

Prefixing routes is possible with routing scopes:

scope "api" do
  scope "v1" do
    get "/users", to: Actions::V1::Users::Index.new
  end
end

It will generate a route with "/api/v1/users" as path.

Rack Middleware

To mount a Rack middleware it's possible with .use

# frozen_string_literal: true

require "bundler/setup"
require "hanami/api"

class App < Hanami::API
  use ElapsedTime

  scope "api" do
    use ApiAuthentication

    scope "v1" do
      use ApiV1Deprecation
    end

    scope "v2" do
      # ...
    end
  end
end

Middleware are inherited from top level scope.

In the example above, ElapsedTime is used for each incoming request because it's part of the top level scope. ApiAuthentication it's used for all the API versions, because it's defined in the "api" scope. ApiV1Deprecation is used only by the routes in "v1" scope, but not by "v2".

Body Parsers

Rack ignores request bodies unless they come from a form submission. If you have an endpoint that accepts JSON, the request payload isn’t available in params.

In order to parse JSON payload and make it avaliable in params, you should add the following lines to config.ru:

# frozen_string_literal: true
require "hanami/middleware/body_parser"

use Hanami::Middleware::BodyParser, :json

Development

After checking out the repo, run bin/setup to install dependencies. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and tags, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/hanami/api.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].