All Projects → rack-app → Rack App

rack-app / Rack App

Licence: apache-2.0
minimalist framework for building rack applications

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Rack App

Zoomhub
Share and view high-resolution images effortlessly
Stars: ✭ 122 (-68.64%)
Mutual labels:  api, web-app
Raxx
Interface for HTTP webservers, frameworks and clients
Stars: ✭ 378 (-2.83%)
Mutual labels:  web-application-framework, rack
Syspass
Systems Password Manager
Stars: ✭ 763 (+96.14%)
Mutual labels:  api, web-app
Controller
Complete, fast and testable actions for Rack and Hanami
Stars: ✭ 221 (-43.19%)
Mutual labels:  api, rack
Crepe
The thin API stack.
Stars: ✭ 120 (-69.15%)
Mutual labels:  api, rack
mif
MIF is a C++11 web-application framework designed for the backend micro-service development
Stars: ✭ 42 (-89.2%)
Mutual labels:  web-app, web-application-framework
Sandwich
🥪 A lightweight and standardized Android network response interface for handling successful data and error responses.
Stars: ✭ 370 (-4.88%)
Mutual labels:  api
Security Guide For Developers
Security Guide for Developers (实用性开发人员安全须知)
Stars: ✭ 19,990 (+5038.82%)
Mutual labels:  api
Stone
The Official API Spec Language for Dropbox API V2
Stars: ✭ 371 (-4.63%)
Mutual labels:  api
Figma To Google Slides
Convert Figma frames into a Google Slides presentation 🍭
Stars: ✭ 385 (-1.03%)
Mutual labels:  api
Neteasecloudmusicapi
网易云音乐 Node.js API service
Stars: ✭ 22,297 (+5631.88%)
Mutual labels:  api
Photon
Clone native desktop UI's like cocoa and develop native feeling applications using web technologies
Stars: ✭ 369 (-5.14%)
Mutual labels:  web-app
Go Api Boilerplate
Go Server/API boilerplate using best practices DDD CQRS ES gRPC
Stars: ✭ 373 (-4.11%)
Mutual labels:  api
Memento
Memento is a development-only tool that caches HTTP calls once they have been executed.
Stars: ✭ 380 (-2.31%)
Mutual labels:  api
Twilio Java
A Java library for communicating with the Twilio REST API and generating TwiML.
Stars: ✭ 371 (-4.63%)
Mutual labels:  api
Polr
🚡 A modern, powerful, and robust URL shortener
Stars: ✭ 4,147 (+966.07%)
Mutual labels:  api
Client ruby
Prometheus instrumentation library for Ruby applications
Stars: ✭ 369 (-5.14%)
Mutual labels:  rack
Villus
🏎 A tiny and fast GraphQL client for Vue.js
Stars: ✭ 378 (-2.83%)
Mutual labels:  api
Slackapidoc
Documentation of undocumented Slack API methods
Stars: ✭ 380 (-2.31%)
Mutual labels:  api
Feather
Feather is a modern Swift-based content management system powered by Vapor 4.
Stars: ✭ 374 (-3.86%)
Mutual labels:  api

Rack::App Build Status

rack-app-logo

Your next favorite rack-based micro-framework that is totally addition free! Have a cup of awesomeness with your sadistically minimalist framework!

The idea behind is simple. Keep the dependencies and everything as little as possible, while able to write pure rack apps, that will do nothing more than what you defined.

The Routing can handle any amount of endpoints that can fit in the memory, so if you that crazy to use more than 10k endpoint, you still don't have to worry about response speed.

It was inspirited by sinatra, grape, and the pure use form of rack. It's in production, powering Back Ends on Heroku

Development Status

The framework considered stable. I don't have the plan to feature creep the framework without real-life use-cases, since most of the custom edge cases can be resolved with composition.

The next time it will receive further updates, when rack provides a finalized support for http2.

If you have an issue, I weekly check the issues tab, answer and reply, or implement a fix for it.

Since the framework's only dependency is the rack gem, I don't have to update the code base to often.

Cheers and Happy Coding!

Concerns

If you want to see fancy magic, you are in a bad place buddy!

This also implies that the framework does not include extensions that monkey patch the whole world to give you nice features. Clean architecture defines that a web framework should only provide an external interface to the web, and nothing more.

If you use rack-app, one thing is sure.

You either love it or will be able to remove it from the project even after years of development because, it will not vendor-lock your application business entities and business use cases to this framework.

And it's totally fine for us. We don't want everyone to be tied to our solutions, we only want to build clean and well-designed software for the developer happiness.

Installation

Add this line to your application's Gemfile:

gem 'rack-app'

And then execute:

$ bundle

Or install it yourself as:

$ gem install rack-app

Is it Production ready?

Yes, it's already powering Heroku hosted micro-services.

Principles

  • Keep It Simple
  • No Code bloat
  • No on run time processing, or keep at the bare minimum
  • Fully BDD (Behaviour Driven Design)
    • built-in test module to ease the development with easy to use tests
  • Easy to Learn
    • rack-app use well known and easy to understand conventions, such as sinatra like DSL
  • Principle Of Least Surprise
  • Modular design
  • the Only dependency is rack, nothing more
  • Open development
  • Try to create Examples for every feature

Features

  • Easy to understand syntax
    • module method level endpoint definition inspirited heavily by the Sinatra DSL
    • unified error handling
    • syntax sugar for default header definitions
    • namespaces for endpoint request path declarations so it can be dry and unified
  • no Class method bloat, so you can enjoy pure ruby without any surprises
  • App mounting so you can create separated controllers for different task
  • Streaming
  • O(log(n)) lookup routing
    • allows as many endpoint registrations to you as you want, without impact on route lookup speed
  • only basic sets for instance method level for the must need tools, such as params, payload
  • Simple to use class level response serializer
    • so you can choose what type of serialization you want without any enforced convention
  • static file serving so you can mount even filesystem-based endpoints too
  • built-in testing module so your app can be easily written with BDD approach
  • made with minimalism in mind so your app can't rely on the framework when you implement business logic
    • if you need something, you should implement it without any dependency on a web framework, rack-app only mean to be to provide you with easy to use interface to the web layer, nothing less and nothing more
  • per endpoint middleware definitions
    • you can define middleware stack before endpoints and it will only apply to them, similar like protected method workflow
  • File Upload and file download efficiently and elegantly with minimal memory consuming
    • note that this is not only memory friendly way pure rack solution, but also 2x faster than the usual solution which includes buffering in memory
  • params validation with ease

Under the hood

rack-app's router relies on a tree structure which makes heavy use of common prefixes, it is basically a compact prefix tree (or just Radix tree). Nodes with a common prefix also share a common parent.

Contributors

Contributing

Usage

basic

require 'rack/app'

class App < Rack::App

  desc 'some hello endpoint'
  get '/hello' do
    'Hello World!'
  end

end

complex

require 'rack/app'

class App < Rack::App

  mount SomeAppClass

  headers 'Access-Control-Allow-Origin' => '*',
          'Access-Control-Expose-Headers' => 'X-My-Custom-Header, X-Another-Custom-Header'

  serializer do |object|
    object.to_s
  end

  desc 'some hello endpoint'
  validate_params do
    required 'words', :class => Array, :of => String, :desc => 'some word', :example => ['pug']
    optional 'word', :class => String, :desc => 'one word', :example => 'pug'
    optional 'boolean', :class => :boolean, :desc => 'boolean value', :example => true
  end
  get '/hello' do
    puts(params['words'])

    'Hello World!'
  end

  namespace '/users' do

    desc 'some restful endpoint'
    get '/:user_id' do
      response.status = 201
      params['user_id'] #=> restful parameter :user_id
      say #=> "hello world!"
    end

  end

  desc 'some endpoint that has error and will be rescued'
  get '/make_error' do
    raise(StandardError,'error block rescued')
  end

  def say
    "hello #{params['user_id']}!"
  end

  error StandardError, NoMethodError do |ex|
    {:error=>ex.message}
  end

  root '/hello'

  get '/stream' do
    stream do |out|
      out << 'data row'
    end
  end

end

you can access Rack::Request with the request method and Rack::Response as a response method.

By default, if you don't write anything to the response 'body' the endpoint block logic return will be used

Frontend Example

if you don't mind extending your dependency list then you can use the front_end extension for creating template-based web applications.

require 'rack/app'
require 'rack/app/front_end' # You need to add `gem 'rack-app-front_end'` to your Gemfile

class App < Rack::App

  apply_extensions :front_end

  helpers do

    def method_that_can_be_used_in_template
      'hello world!'
    end

  end

  # use ./app/layout.html.erb as layout, this is optionable
  layout 'layout.html.erb'

  # at '/' the endpoint will serve (render)
  # the ./app/index.html content as response body and wrap around with layout if the layout is given
  get '/' do
    render 'index.html'
  end

end

this example expects an "app" folder next to the "app.rb" file that included templates being used such as layout.html.erb and index.html.

Testing

for testing use rack/test or the bundled testing module for writing unit test for your rack application

require 'spec_helper'
require 'rack/app/test'

describe App do

  include Rack::App::Test

  rack_app described_class

  describe '/hello' do
    # example for params and headers and payload use
    subject { get(url: '/hello', params: {'dog' => 'meat'}, headers: {'X-Cat' => 'fur'}, payload: 'some string') }

    it { expect(subject.status).to eq 200 }

    it { expect(subject.body).to eq "Hello World!" }
  end

  describe '/users/:user_id' do
    # restful endpoint example
    subject { get(url: '/users/1234') }

    it { expect(subject.body).to eq 'hello 1234!'}

    it { expect(subject.status).to eq 201 }

  end

  describe '/make_error' do
    # error handled example
    subject { get(url: '/make_error') }

    it { expect(subject.body).to eq '{:error=>"error block rescued"}' }
  end

end


Example Apps To start with

Benchmarking

This is a repo that used for measure Rack::App project speed in order to keep an eye on the performance in every release.

the benchmarking was taken on the following hardware specification:

  • Processor: 2,7 GHz Intel Core i5
  • Memory: 16 GB 1867 MHz DDR3
  • Ruby: ruby 2.3.0p0 (2015-12-25 revision 53290) [x86_64-darwin15]

Endpoint to be call type: static

number of declared endpoints: 100

name version current / fastest real
rack-app 4.0.0 1.0 2.2053215187043942e-05
rack-app 5.2.0 1.185 2.6140331494390213e-05
rack-app 5.0.0.rc3 1.387 3.0592694940592784e-05
rack-app 5.10.0 1.687 3.719768107671963e-05
rack-app 5.12.0 1.747 3.852106360719058e-05
rack-app 5.7.0 1.784 3.934149001724991e-05
ramaze 2012.12.08 2.237 4.932373271523216e-05
hobbit 0.6.1 3.111 6.860981349018188e-05
brooklyn 0.0.1 5.245 0.00011567194234917104
plezi 0.14.1 5.334 0.00011763589749898317
plezi 0.14.2 5.588 0.00012324020796222724
nancy 0.3.0 5.725 0.00012626088352407584
nyny 3.4.3 5.744 0.00012667404900032145
roda 2.20.0 9.662 0.00021307581296423227
roda 2.17.0 10.646 0.00023477471132838754
scorched 0.25 12.728 0.0002807019599946191
scorched 0.27 16.074 0.0003544879730325173
sinatra 1.4.7 19.857 0.00043791615583657487
grape 0.17.0 25.941 0.0005720832234016178
rails 5.0.0 33.234 0.0007329187002032537
camping 2.1.532 39.818 0.0008781073650072727
grape 0.18.0 41.857 0.000923075147962645
rails 5.0.0.1 47.286 0.0010428086559986802
cuba 3.8.0 55.397 0.0012216723478342246
almost-sinatra unknown 58.728 0.0012951477793394547

For more reports check the Benchmark repo out :)

Roadmap

Team Backlog

If you have anything to say, you can leave a comment. :)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. 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/rack-app/rack-app This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License and Copyright

Rack::App is free software released under the Apache License V2 License. The logo was designed by Zsófia Gebauer. It is Copyright © 2015 Adam Luzsi. All Rights Reserved.

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].