Are there any good Scala special frameworks and libraries worth considering?

Are there any good Scala-specific frameworks (for whatever purpose) and libraries worthy of attention besides the framework of the Lift website?

+7
scala frameworks
source share
8 answers

We'll see:

  • Akka - Distributed Computing
  • Scalaz - Functional programming (higher and higher than Scala)
  • ScalaCheck - Auto-Sample Testing Platform
  • ScalaTest / Specs2 - Traditional Testing Framework

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

+6
source share

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

Squeryl - Basically, typical SQL DSL

Scalatra - Ruby Sinatra clone

Play Framework Scala Module - Scala programming for playback

+5
source share

Akka to be sure.

+4
source share
  • scala xray shows how to use the compiler plugin for a good effect.
  • sbt for sure. This is a miracle.
+4
source share

Circumflex ORM is a raw, but very interesting structure for object-relational mapping.

+1
source share

scalate for patterns and scalala for linear algebra is worth a look.

+1
source share

People from Twitter have created some good libraries. We use:

Querulous ( http://github.com/nkallen/querulous ): to facilitate access to the database through JDBC

and

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

+1
source share

Dispatch for creating HTTP requests (synchronously or asynchronously) and processing responses by defining closures. His use of characters may be controversial, but I'm a fan.

0
source share

All Articles