[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Omaha.pm] framework shell shock?
You might prefer to take a look at just bolting on to PSGI and Plack, then. They give CGI a much needed face lift.
For example, the PSGI Hello World app is:
my $app = sub { [ 200, [ 'Content-type' => 'text/plain ], [ 'Hello World!' ] ] };
I've just implemented a git-based wiki for myself building a framework for myself using Plack and Path::Router.
For myself, I tend to think of Catalyst at doing too much that I don't usually use (chained dispatch), but not really providing enough (model and view agnostic) to justify using it. That's not to say it's a bad framework, just not my preference.
--
Andrew Sterling Hanenkamp
sterling@hanenkamp.com
785.370.4454