Is functional programming relevant to web development? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:27:47Zhttp://stackoverflow.com/feeds/question/292033http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development16Is functional programming relevant to web development?Hates_2008-11-15T02:27:40Z2009-08-05T21:56:43Z
<p>I've been seeing so much recently about functional programming and Clojure looks particularly interesting. While I 'understand' the basic description of what it is, I can't figure out how I would use it on a day to day basis as a web developer, if I can at all. A lot of what I have read focuses on the maths side of functional programming rather then typical programming situations found in regular OO. </p>
<p>Have I got the wrong end of the stick? Is functional programming totally un-related to web development? If not, are there any examples of it being used 'for the web'?</p>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292043#2920434Answer by Greg Case for Is functional programming relevant to web development?Greg Case2008-11-15T02:41:19Z2008-11-15T02:41:19Z<p>A few examples off the top of my head:</p>
<ul>
<li>Yahoo! Store is powered by Lisp (originally named <a href="http://en.wikipedia.org/wiki/Viaweb" rel="nofollow">Viaweb</a> prior to acquisition)</li>
<li><a href="http://reddit.com" rel="nofollow">Reddit</a> was fully prototyped in Lisp, although they <a href="http://blog.reddit.com/2005/12/on-lisp.html" rel="nofollow">switched to Python</a> in 2005</li>
<li><a href="http://news.ycombinator.com/" rel="nofollow">Hacker News</a> is written entirely in Arc (a Lisp dialect)</li>
</ul>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292048#2920480Answer by Germán for Is functional programming relevant to web development?Germán2008-11-15T02:47:17Z2008-11-15T02:53:58Z<p>It is not totally unrelated to web development. The app sitting on the server can very well take advantage of functional features like closures, higher-order functions, immutability, referential transparency... for instance, you sure have collections that you need to transform or manipulate in whatever way. Functional programming helps here, and it is for a reason that its idioms are penetrating mainstream languages.
Functional features help in conciseness, testability, parallelization, and they can also provide native solutions to problems you would otherwise solve with patterns. </p>
<p>Update: there are web frameworks for functional languages too. Weblocks for Common Lisp, Lift for Scala. These are the ones I've heard of, there might be more... however you don't necessarily have to be purely functional -- for example Scala is not pure and should work with any Java framework, you'd still be able to use functional programming for the business layer, etc.</p>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292061#2920613Answer by Sherm Pendley for Is functional programming relevant to web development?Sherm Pendley2008-11-15T03:00:49Z2008-11-15T03:00:49Z<p>I don't see why not - so long as you're delivering standards-compliant HTML to browsers, they don't care what you used to produce it, be that a functional language, an imperative language, or trained monkeys.</p>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292280#2922807Answer by olavk for Is functional programming relevant to web development?olavk2008-11-15T07:42:08Z2008-11-15T07:42:08Z<p>Functional programming matches web apps very well. The web app recieves a HTTP request and produces a HTML result. This could be considered a function from requests to pages.</p>
<p>Compare with desktop apps, where we typically have a long running process, a stateful UI and dataflow in several directions. This is more suited to OO which is concerned about objects with state and message passing.</p>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292413#2924131Answer by Ali A for Is functional programming relevant to web development?Ali A2008-11-15T10:57:54Z2008-11-15T10:57:54Z<p>They are doing some <a href="http://groups.inf.ed.ac.uk/links/" rel="nofollow">pretty cool things at Edinburgh University</a> with functional programming for the web.</p>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/292674#2926745Answer by Chris Conway for Is functional programming relevant to web development?Chris Conway2008-11-15T15:31:58Z2008-11-15T15:31:58Z<p><em>Pure</em> functional programming might not map very well into the web programming environment. But the main impediment is just the lack of infrastructure (frameworks and APIs). It will be a long time (probably never, honestly) before a functional language has as rich a web programming environment as Java, Python, or Ruby.</p>
<p>That said, there are some options.</p>
<ul>
<li><a href="http://www.ocsigen.org/" rel="nofollow">Ocsigen/Eliom</a> - an OCaml web server/programming framework</li>
<li><a href="http://groups.inf.ed.ac.uk/links/" rel="nofollow">Links</a> - a functional web programming language</li>
<li><a href="http://happs.org/" rel="nofollow">HAppS</a> - a Haskell web application server</li>
<li><a href="http://www.haskell.org/haskellwiki/HSP" rel="nofollow">Haskell Server Pages</a></li>
<li><a href="http://merjis.com/developers/mod_caml/" rel="nofollow">mod_caml</a> - an OCaml CGI module for Apache</li>
</ul>
http://stackoverflow.com/questions/292033/is-functional-programming-relevant-to-web-development/1235976#12359761Answer by James McMahon for Is functional programming relevant to web development?James McMahon2009-08-05T21:56:43Z2009-08-05T21:56:43Z<p><a href="http://www.artima.com/scalazine/articles/twitter%5Fon%5Fscala.html" rel="nofollow">Twitter rewrote their backend in Scala</a>, a JVM language that supports both the Object Oriented and Functional paradigms.</p>
<p>Also, the <a href="http://liftweb.net/" rel="nofollow">Lift</a> web framework is written in Scala.</p>