• Stars
    star
    2,630
  • Rank 16,540 (Top 0.4 %)
  • Language
    Scala
  • License
    Other
  • Created almost 15 years ago
  • Updated 12 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Tiny Scala high-performance, async web framework, inspired by Sinatra

Scalatra Scala CI

Join the chat at https://gitter.im/scalatra/scalatra scalatra Scala version support

Scalatra is a tiny, Sinatra-like web framework for Scala.

Example

import org.scalatra._

class ScalatraExample extends ScalatraServlet {
  get("/") {
    <h1>Hello, world!</h1>
  }
}

Documentation

If you're just starting out, see the installation and first project sections of our website.

Once you've done that, take a look at the Scalatra Guides for documentation on all aspects of the framework, code examples, and more. We also have an extensive selection of Example Applications which accompany the tutorials in the Scalatra Guides.

Latest version

The latest version of Scalatra is 3.0.+, and is published to Maven Central.

// for javax
libraryDependencies += "org.scalatra" %% "scalatra-javax" % "3.0.+"

// for jakarta
libraryDependencies += "org.scalatra" %% "scalatra-jakarta" % "3.0.+"

Community