up vote 5 down vote favorite
3
share [g+] share [fb]

Are there any good Scala-specific frameworks (for whatever purpose) and libraries worth taking a look out there other than Lift web framework?

link|improve this question

69% accept rate
feedback

7 Answers

Let's see:

  • Akka -- Distributed Computing
  • Scalaz -- Functional Programming (above and beyond what Scala provides)
  • ScalaCheck -- Testing framework with auto-sampling
  • ScalaTest / Specs -- Traditional testing frameworks

These are my favorites. Of course, there are many libraries out there, but it would be pointless to list here all interesting Scala libraries that exist.

link|improve this answer
feedback

Akka, to be certain.

link|improve this answer
feedback

Probably not as popular as some of the others, but I think these really show off what Scala can do:

Squeryl - Basically a typesafe SQL DSL

Scalatra - Ruby Sinatra clone

Play Framework Scala Module - Scala programming for Play

link|improve this answer
Thanks! At the first glance, Squeryl seems to be a thing among those I was looking for. – Ivan Sep 8 '10 at 1:09
feedback
  • scala xray shows how to use a compiler plugin for good effect.
  • sbt for sure. It's a marvel.
link|improve this answer
feedback

Circumflex ORM - raw but very interesting framework for object-relational mapping.

link|improve this answer
feedback

scalate for templating and scalala for linear algebra are well worth looking at.

link|improve this answer
feedback

The Twitter folks have produced some nice libraries. We're leveraging:

Querulous (http://github.com/nkallen/querulous): for easy database access via JDBC

and

Configgy (http://www.lag.net/configgy): for accessing file-based configuration data

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.