peregine alternatives and similar packages
Based on the "Web Frameworks" category.
Alternatively, view peregine alternatives based on common mentions on social networks and blogs.
-
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.
CodeRabbit: AI Code Reviews for Developers
* 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.