Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1.53 KB

oldindex.md

File metadata and controls

53 lines (37 loc) · 1.53 KB
layout title
default
Bigtop

What is Bigtop?

Bigtop is a collection of web development libraries for Scala programmers. It is intended to complement web frameworks like Lift and Scalatra.

Development Status

Bigtop is currently in extremely early alpha. There are two semi-stable libraries, plus a number you probably shouldn't dabble with yet.

The stable libraries are:

  • Bigtop Core - utilities for generating and manipulating URLs and hyperlinks;
  • Bigtop Routes - bidirectional type-safe mappings between URL paths and Scala code.

We encourage and appreciate any feedback - if you have any suggestions or comments, please get in touch via our Github page.

Getting Bigtop

You currently have two options:

  • Grab the artefacts directly from our Maven repository. In SBT 0.11:

{% highlight scala %} resolvers += "Untyped" at "http://repo.untyped.com"

libraryDependencies ++= Seq( "bigtop" %% "bigtop-core" % "0.2-SNAPSHOT", "bigtop" %% "bigtop-routes" % "0.2-SNAPSHOT" ) {% endhighlight %}

  • Grab the source code from our Github repo and build it using SBT:

{% highlight bash %} git clone git://github.com/bigtop/bigtop.git bigtop cd bigtop sbt update sbt publish-local {% endhighlight %}

Browse the Maven repository to find the latest versions and the applicable versions of Scala.