peregine alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view peregine alternatives based on common mentions on social networks and blogs.
-
Finatra
Fast, testable, Scala services built on TwitterServer and Finagle -
Scalatra
Tiny Scala high-performance, async web framework, inspired by Sinatra -
Skinny Framework
:monorail: "Scala on Rails" - A full-stack web app framework for rapid development in Scala -
youi
Next generation user interface and application development in Scala and Scala.js for web, mobile, and desktop. -
Play Pagelets
A module for the Play Framework to build highly modular applications -
Xitrum
Empty Xitrum project skeleton, like the one created by "rails new"
Access the most powerful time series database as a service
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of peregine or a related project?
README
peregrine
Minimal app:
import io.peregrine._
object WebApp extends PeregrineApp {
get("/hi") { req =>
"Hello World!"
}
}
Install dependency in build.sbt
file:
scalaVersion := "2.11.7"
resolvers += "Twitter" at "http://maven.twttr.com"
resolvers += "bintray" at "https://dl.bintray.com/dvarelap/maven"
libraryDependencies += "com.github.dvarelap" %% "peregrine" % "1.2.2"
And run with:
$ sbt run
View at: http://localhost:5000/hi
Full Documentation
See full documentation [here](docs.md)
Note Peregrine works only with scala version 2.11+
Licence
Copyright 2015 Daniel Varela and other contributors.
Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0
*Note that all licence references and agreements mentioned in the peregine README section above
are relevant to that project's source code only.