Are there any good Scala-specific frameworks (for whatever purpose) and libraries worth taking a look out there other than Lift web framework?
views:
172answers:
7
+5
A:
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.
Daniel
2010-09-08 00:14:42
+3
A:
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
Adam Rabung
2010-09-08 00:31:30
Thanks! At the first glance, Squeryl seems to be a thing among those I was looking for.
Ivan
2010-09-08 01:09:48
+4
A:
- scala xray shows how to use a compiler plugin for good effect.
- sbt for sure. It's a marvel.
Synesso
2010-09-08 00:44:01
+1
A:
Circumflex ORM - raw but very interesting framework for object-relational mapping.
Jeriho
2010-09-08 07:51:10