R – What are the best open source Erlang projects/files for a novice to read?

erlangopen source

I'm looking for some light reading. For those of you have far more Erlang experience than I, what are the best source files to read out on the web? If someone were going to learn correct Erlang/OTP principles only from reading raw source, what code should he start with and where should he go beyond that for a deep and advanced understanding?

Best Answer

I think that the following tutorial has a quite realistic application following OTP practices.

A fast web server demonstrating some undocumented Erlang features

But I might be biased since I continued work on it to meet some actual needs I had, the project is called 'iserve'. But other people have used it as study material, see pokingarounderlang on iserve.

Related Topic