summaryrefslogtreecommitdiffstats
path: root/docs/en/cowboy/2.0/guide/erlang_web/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'docs/en/cowboy/2.0/guide/erlang_web/index.html')
-rw-r--r--docs/en/cowboy/2.0/guide/erlang_web/index.html50
1 files changed, 40 insertions, 10 deletions
diff --git a/docs/en/cowboy/2.0/guide/erlang_web/index.html b/docs/en/cowboy/2.0/guide/erlang_web/index.html
index 8206392a..111e2698 100644
--- a/docs/en/cowboy/2.0/guide/erlang_web/index.html
+++ b/docs/en/cowboy/2.0/guide/erlang_web/index.html
@@ -69,6 +69,9 @@
<h1 class="lined-header"><span>Erlang and the Web</span></h1>
+<div class="paragraph"><p>Erlang is the ideal platform for writing Web applications.
+Its features are a perfect match for the requirements of
+modern Web applications.</p></div>
<div class="sect1">
<h2 id="_the_web_is_concurrent">The Web is concurrent</h2>
<div class="sectionbody">
@@ -185,7 +188,7 @@ tend to not stick around when problems arise. Users today want
their applications to be always available and if it&#8217;s having
too many issues they just move on.</p></div>
<div class="paragraph"><p>Despite this, when developers choose a product to use for building
-web applications, their only concern seem to be "Is it fast?",
+web applications, their only concern seems to be "Is it fast?",
and they look around for synthetic benchmarks showing which one
is the fastest at sending "Hello world" with only a handful
concurrent connections. Web benchmarks haven&#8217;t been representative
@@ -199,14 +202,14 @@ Erlang.</p></div>
language, you have to check all the return values and act accordingly
to avoid any unforeseen issues. If you&#8217;re lucky, you won&#8217;t miss
anything important. When writing Erlang code, you can just check
-the success condition and ignore all errors. If an error happen,
+the success condition and ignore all errors. If an error happens,
the Erlang process crashes and is then restarted by a special
process called a supervisor.</p></div>
-<div class="paragraph"><p>The Erlang developer thus has no need to fear about unhandled
+<div class="paragraph"><p>Erlang developers thus have no need to fear unhandled
errors, and can focus on handling only the errors that should
give some feedback to the user and let the system take care of
-the rest. This also has the advantage of allowing him to write
-a lot less code, and letting him sleep at night.</p></div>
+the rest. This also has the advantage of allowing them to write
+a lot less code, and let them sleep at night.</p></div>
<div class="paragraph"><p>Erlang&#8217;s fault tolerance oriented design is the first piece of
what makes it the best choice for the omnipresent, always available
Web.</p></div>
@@ -219,12 +222,39 @@ vital in the future of the Web. Erlang is ready.</p></div>
</div>
</div>
<div class="sect1">
-<h2 id="_erlang_is_the_ideal_platform_for_the_web">Erlang is the ideal platform for the Web</h2>
+<h2 id="_learn_erlang">Learn Erlang</h2>
<div class="sectionbody">
-<div class="paragraph"><p>Erlang provides all the important features that the Web requires
-or will require in the near future. Erlang is a perfect match
-for the Web, and it only makes sense to use it to build web
-applications.</p></div>
+<div class="paragraph"><p>If you are new to Erlang, you may want to grab a book or
+two to get started. Those are my recommendations as the
+author of Cowboy.</p></div>
+<div class="sect3">
+<h4 id="_the_erlanger_playbook">The Erlanger Playbook</h4>
+<div class="paragraph"><p>The Erlanger Playbook is an ebook I am currently writing,
+which covers a number of different topics from code to
+documentation to testing Erlang applications. It also has
+an Erlang section where it covers directly the building
+blocks and patterns, rather than details like the syntax.</p></div>
+<div class="paragraph"><p>You can most likely read it as a complete beginner, but
+you will need a companion book to make the most of it.
+Buy it from the <a href="http://ninenines.eu">Nine Nines website</a>.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_programming_erlang">Programming Erlang</h4>
+<div class="paragraph"><p>This book is from one of the creator of Erlang, Joe
+Armstrong. It provides a very good explanation of what
+Erlang is and why it is so. It serves as a very good
+introduction to the language and platform.</p></div>
+<div class="paragraph"><p>The book is <a href="http://pragprog.com/book/jaerlang2/programming-erlang">Programming Erlang</a>,
+and it also features a chapter on Cowboy.</p></div>
+</div>
+<div class="sect3">
+<h4 id="_learn_you_some_erlang_for_great_good">Learn You Some Erlang for Great Good!</h4>
+<div class="paragraph"><p><a href="http://learnyousomeerlang.com">LYSE</a> is a much more complete
+book covering many aspects of Erlang, while also providing
+stories and humor. Be warned: it&#8217;s pretty verbose. It comes
+with a free online version and a more refined paper and
+ebook version.</p></div>
+</div>
</div>
</div>