twitter/finatra

Name: finatra

Owner: Twitter, Inc.

Description: Fast, testable, Scala services built on Twitter-Server and Finagle

Created: 2012-02-16 23:55:29.0

Updated: 2018-01-17 17:05:13.0

Pushed: 2018-01-17 22:22:42.0

Homepage: https://twitter.github.io/finatra/

Size: 12310

Language: Scala

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Finatra

Build Status Test Coverage Project status Maven Central Gitter

Status

This project is used in production at Twitter (and many other organizations), and is being actively developed and maintained.

Finatra Logo

Finatra is a lightweight framework for building fast, testable, scala applications on top of TwitterServer and Finagle. Finatra provides an easy-to-use API for creating and testing Finagle servers and apps as well as powerful JSON support, modern logging via SLF4J, Finagle client utilities, and more.

Getting involved
Features
Documentation

To get started, see the Getting Started section of our User Guide to get up and running. Or check out the specific sections for building HTTP or Thrift servers.

Examples

An HTTP controller and server:

rt com.twitter.finatra.http._

gleton
s ExampleController extends Controller {
t("/") { request: Request =>
"<h1>Hello, world!</h1>"


cala
rt com.twitter.finatra.http._

s ExampleServer extends HttpServer {
erride def configureHttp(router: HttpRouter): Unit = {
router
  .filter[CommonFilters]
  .add[ExampleController]


A Thrift controller and server:

rt com.twitter.finatra.thrift._

gleton
s ExampleThriftController 
tends Controller
th MyThriftService.BaseServiceIface {

erride val myFunction = handle(MyFunction) { args: MyFunction.Args =>
...


cala
rt com.twitter.finatra.thrift._

s ExampleServer extends ThriftServer {
erride def configureThrift(router: ThriftRouter): Unit = {
router
  .add[ExampleThriftController]


Example Projects

Finatra includes working examples which highlight various features of the framework and include tests. These examples are included in the root sbt build and are thus buildable as part of the entire project.

Please take a look through the examples for more detailed information on features, testing, building, and running.

Latest version

The master branch in Github tracks the latest stable release, which is currently:

Maven Central

available on Maven Central. See the First Steps section in the User Guide for how to add dependencies.

Releases are done on an approximately monthly schedule. While semver is not followed, the changelogs are detailed and include sections on public API breaks and changes in runtime behavior.

Development version

The develop branch in Github tracks the latest code which is updated every week. If you want to contribute a patch or fix, please use this branch as the basis of your Pull Request.

For more information on providing contributions, please see our CONTRIBUTING.md documentation.

Presentations

Check out our list of presentations: Finatra Presentations.

Authors

A full list of contributors can be found on GitHub.

Follow @finatra on Twitter for updates.

License

Copyright 2013-2018 Twitter, Inc.

Licensed under the Apache License, Version 2.0: https://www.apache.org/licenses/LICENSE-2.0


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.