From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@yquem.inria.fr Delivered-To: caml-list@yquem.inria.fr Received: from nez-perce.inria.fr (nez-perce.inria.fr [192.93.2.78]) by yquem.inria.fr (Postfix) with ESMTP id 770EFBB84 for ; Wed, 12 Jul 2006 09:39:16 +0200 (CEST) Received: from pauillac.inria.fr (pauillac.inria.fr [128.93.11.35]) by nez-perce.inria.fr (8.13.6/8.13.6) with ESMTP id k6C7dFV4010842 for ; Wed, 12 Jul 2006 09:39:16 +0200 Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) by pauillac.inria.fr (8.7.6/8.7.3) with ESMTP id JAA27059 for ; Wed, 12 Jul 2006 09:39:15 +0200 (MET DST) Received: from irma.motion-twin.com (ns0.motion-twin.com [213.186.50.39]) by concorde.inria.fr (8.13.6/8.13.6) with ESMTP id k6C7dE37023373 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Wed, 12 Jul 2006 09:39:15 +0200 Received: from [82.233.72.200] (helo=[192.168.2.115]) by irma.motion-twin.com with esmtpsa (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.54) id 1G0ZJC-00016r-3P; Wed, 12 Jul 2006 09:38:58 +0200 Message-ID: <44B4A6CC.6070607@motion-twin.com> Date: Wed, 12 Jul 2006 09:37:48 +0200 From: Nicolas Cannasse User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: David MENTRE Cc: caml-list@inria.fr Subject: Re: [Caml-list] Small comparison of OCaml web frameworks References: <87zmffc1l3.fsf@linux-france.org> In-Reply-To: <87zmffc1l3.fsf@linux-france.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Miltered: at nez-perce with ID 44B4A723.002 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Miltered: at concorde with ID 44B4A722.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Spam: no; 0.00; cannasse:01 ncannasse:01 motion-twin:01 ocaml:01 ocaml:01 wdialog:01 wdialog:01 compiler:01 high-level:01 inference:01 polymorphism:01 javascript:98 swf:98 caml-list:01 short:01 X-Spam-Checker-Version: SpamAssassin 3.0.3 (2005-04-27) on yquem.inria.fr X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=disabled version=3.0.3 > Hello, > > I've started a short comparison of OCaml web frameworks for WDialog, > Ex-Nunc, Ocsigen and mod_caml: > http://www.demexp.org/en/doku.php?id=web_client_development_framework#comparison_of_ocaml_frameworks > > This page is a Wiki. Feel free to fix any error or omission you might > see (please add a meaningful comment in that case), as I have not tested > each framework (except WDialog). > > I'm also interested into other criteria of comparison you might see > interesting. > > Best wishes, > david Hi David, I added both haXe (http://haxe.org) and Neko (http://nekovm.org) to the list of your web frameworks. Since the haXe compiler is written in OCaml, that might interest some people on this list as well. haXe is an high-level OO language with a modern type system (type inference, enums, ML polymorphism). It targets three platforms : - it has a Javascript/AJAX code generator so you can use it to code the client side of your website. - it has a Neko code generator that can be used with NekoVM to write the server side of your website : NekoVM is a small embeddable VM with a "mod" for Apache. - it has a Flash/SWF generator so you can use haXe to develop Flash RIA and other applications. Nicolas