Web "frameworks" for haXe to deploy in a PHP environment? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T11:17:14Z http://stackoverflow.com/feeds/question/151438 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment 3 Web "frameworks" for haXe to deploy in a PHP environment? Andrew Gwozdziewycz 2008-09-30T01:41:26Z 2009-11-15T21:03:53Z <p>Lately I've been taking a look at <a href="http://haxe.org" rel="nofollow">haXe</a>, to build an application to be deployed to Apache running PHP. Well, while it looks like it might suit my needs (deploying to PHP, but not using an awful language), I haven't found anything to make the actual application development easier than building a traditional non-MVC PHP app. Are there any toolkits/frameworks that I'm missing, that would be worthwhile? </p> <p>It'd be nice if it were MVC inspired, and I'd definitely want an easy way to use nice URLS, though I could settle for mod_rewrite rules if necessary. </p> <p>Edit: The idea is to <strong>not</strong> use something like CakePHP on the PHP end, but to instead use something like CakePHP on the haXe end.</p> http://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment/363690#363690 3 Answer by Hippo for Web "frameworks" for haXe to deploy in a PHP environment? Hippo 2008-12-12T18:24:54Z 2009-11-15T21:03:53Z <p>There is a port of PureMVC for haXe: <a href="http://trac.puremvc.org/PureMVC%5FHaxe/" rel="nofollow" title="PureMVC haXe">http://trac.puremvc.org/PureMVC_Haxe/</a></p> <p>As far as I know this the only thing for haXe, but there are discussions on the mailing list about creating a own framework, but this could take a while.</p> http://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment/834704#834704 2 Answer by Damian for Web "frameworks" for haXe to deploy in a PHP environment? Damian 2009-05-07T13:41:36Z 2009-05-07T13:41:36Z <p>I see that someone is starting to develop an MVC framework for Haxe called "Hails", though I don´t know if it is usable yet.</p> <p>hails: A minimal Rails-inspired MVC web-framework for HaXe / PHP </p> <p><a href="http://code.google.com/p/hails/" rel="nofollow">http://code.google.com/p/hails/</a> </p> http://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment/1620211#1620211 0 Answer by Cambiata for Web "frameworks" for haXe to deploy in a PHP environment? Cambiata 2009-10-25T06:53:21Z 2009-10-25T06:53:21Z <p>Take a look at HaXigniter, a new kid on the block:</p> <p><a href="http://github.com/ciscoheat/haxigniter" rel="nofollow">http://github.com/ciscoheat/haxigniter</a></p> http://stackoverflow.com/questions/151438/web-frameworks-for-haxe-to-deploy-in-a-php-environment/1738781#1738781 1 Answer by Marek Mollin for Web "frameworks" for haXe to deploy in a PHP environment? Marek Mollin 2009-11-15T20:52:28Z 2009-11-15T20:52:28Z <p>I would recon you to do your own. The problem with frameworks above (Excluding PureMVC) is that they were designed for particular language. Haxigniter is a good copy, but it has the architecture that was kind of enforced by PHP4.</p> <p>Its a good excersise! Let's you understand the differences and work out bottomline mechanics - and this is very important as your haxe code will be translated ( so you have double abstraction 1. translation 2. framework its good to know how to work thing out ;]) </p>