Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a well documented open source project, written in Scala to see best practices etc. At sourceforge.net I found a few projects tagged as Scala but they were actually written in Java.

github seems a bit better: http://groups.google.com/group/scala-melb/web/open-scala-projects

Does anyone know such a project which could be recommended for learning?

share|improve this question
Scala Bazaar System is also a good resource scala-lang.org/node/93 – stacker Feb 5 '10 at 8:03

6 Answers

up vote 20 down vote accepted

These should get you started:

  1. http://github.com/paulp/optional
  2. http://github.com/lift/lift
  3. http://github.com/robey/kestrel
  4. http://code.google.com/p/scala-migrations

There is a bit of a bias towards frameworks. A codebase for a more traditional application may differ a little, often a framework uses more advanced language features to hide some complexity from application code.

share|improve this answer

The Scala compiler itself is written largely in Scala.

share|improve this answer
+1 Learning from the creators is probably a good idea, thanks – stacker Jan 26 '10 at 8:33

Adding to Jim Ferran's answer: It's also very educational to look at the source code of the standard Scala library. It should be included in your Scala installation, in a jar file in the src directory. (The source code of the compiler and other parts can also be found there).

share|improve this answer

Many scala projects post using posterous to implicit.ly which I find to be a good place to discover them. Another option is to look on https://github.com/languages/Scala/updated where you can find a list of all scala projects on github in order of last update. There are still a lot of libraries but there are several apps in the mix as well.

share|improve this answer

Lift Framework is the most known scala project.

share|improve this answer

Here is an open project thought as a java2scala tutorial: http://www.javalinux.it/wordpress/java2scala/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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