Popularity
1.4
Declining
Activity
0.0
Stable
14
4
4

Programming language: Scala
License: Apache License 2.0
Tags: Web Frameworks    
Latest version: v1.2.0

peregine alternatives and similar packages

Based on the "Web Frameworks" category.
Alternatively, view peregine alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of peregine or a related project?

Add another 'Web Frameworks' Package

README

peregrine

Join the chat at https://gitter.im/dvarelap/peregrine Build Status Bintray

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.