I am not looking for a necessarily super-robust solution with a 10-year track record, but for something that can be used in a real applications, and goes beyond just being able to run an Hello World example.

My preference is to run the compiler on the server, so I can compile Haskell code ahead of time. Of course, the solution would need to be more than just a compiler, and enable Haskell code to access the API available on the browser (DOM, XHR…).

Footnote: the projects I have seen so far don't seem to be actively maintained, or to go beyond being able to run "Hello world", or in some case even to go beyond a project description.

link|improve this question

Why? [maybe there is a reason why they are not maintained!] – epascarello Jun 7 '11 at 22:22
8  
Today I learned that there may be more than zero Haskell-to-JavaScript compilers. – Pointy Jun 7 '11 at 22:25
3  
Today I learned that there are more than zero people on the planet that want to compile Haskell to JavaScript. – Ira Baxter Jun 7 '11 at 23:15
1  
Most existing Haskell implementations compile to C or x86. I'm pretty sure there's more deployed ECMAScript engines than either C or x86 engines. So, it makes perfect sense, doesn't it? ECMAScript is a pretty fine assembly language, too, except it desperately needs GOTO, continuations, a reified stack or something like that. (Note: I'm only talking of ECMAScript as an assembly language. Adding GOTO to ECMAScript as a programming language would be a terrible mistake. Continuations OTOH would be pretty cool. Well, actually ECMASCript already has exceptions which are GOTOs anyway ...) – Jörg W Mittag Jun 8 '11 at 0:21
2  
@Ira: It is almost certainly true that there are more C implementations than JavaScript ones, although this does not follow logically from the fact that most of them are written in C. Anyway, I guess compiling Haskell to JavaScript is mostly motivated by a desire to have access to the strong static guarantees of Haskell in the browser. – hammar Jun 8 '11 at 14:13
show 5 more comments
feedback

4 Answers

up vote 2 down vote accepted

There is a more complete list here:

http://www.haskell.org/haskellwiki/The_JavaScript_Problem

link|improve this answer
Good summary of the possible solution out there. Thanks for chiming in. – avernet May 14 at 16:23
Oh man my answer was unaccepted. I feel like I did something bad since its -15 on the rep. – Adam Gent May 15 at 3:49
@AdamGent now I feel bad – Dve May 15 at 8:19
No you did good. Its just points :) – Adam Gent May 17 at 16:34
feedback

You may find this List useful: https://github.com/jashkenas/coffee-script/wiki/List-of-languages-that-compile-to-JS

From the List:

* UHC (Utrecht Haskell Compiler) backend converts UHC core to JavaScript, allowing the compiling of Haskell code to JS.
* YHC (York Haskell Compiler) backend, as above but with YHC core language.
* jshaskell

I know its not Haskell but Coffee script is expression based and rather elegant IMHO.

link|improve this answer
2  
In this list «Emscripten LLVM to JavaScript compiler.» is under C/C++ section which is wrong as it can compile any language that can be compiled to LLVM bytecode, including Haskell. – ZyX Jun 8 '11 at 11:18
2  
Out of those, UHC looks the most promising. As of today, its last release was in Oct 2010, and they have a blog with JavaScript specific posts (goo.gl/cX4fN). YHC is dead (goo.gl/icNTo), so I wouldn't even consider to evaluate it. jshaskell is a project on Google Code (goo.gl/d85K4). As of today, the repository hasn't been touched since Jul 2010, and Google Code describes the activity of the project as "None"; not very encouraging. – avernet Jun 9 '11 at 0:33
feedback

I have stumbled upon this project called ghcjs

It seems promising!

Quote from the README:

Haskell to Javascript translator

Project aims to provide solution to

  • compile modern Haskell libraries to Javascript files and use them in Ajax applications or
  • develop entire Ajax application in Haskell language

Previous version of project is located at vir.mskhug.ru.

link|improve this answer
2  
on ghcjs, see also: haskell.org/pipermail/haskell-cafe/2011-May/091897.html – sclv Jun 15 '11 at 20:20
@sclv, do you get to try ghcjs? Is it already usable, or for now more of a prototype? – avernet Jun 15 '11 at 22:58
@avernet, I didn't go further than reading the readme-file, so I can't tell. – Rotsor Jun 16 '11 at 0:43
feedback

Yesod is a very popular Haskell webframework, so they may have the "most production level" candidates: https://github.com/yesodweb/yesod/wiki/Javascript-Options

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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