What MVC framework in Perl has its own standalone server?

I am creating an automatic testing framework in Perl for regression tests. I would like to publish my results on test machines. I used django before when the server was working autonomously without the need for installation. What MVC framework in Perl has its own standalone server? Basically, which of the MVC Perl infrastructures is closest to the django server features and the DRY (Do not Repeat Yourself) principles?

PS I will not rewrite my framework in python

PSS I will not use the Perl and django framework as MVC

(no python on servers :()

+4
source share
4 answers

Catalyst comes with a built-in test server - for more information check out Catalyst :: Manual :: Tutorial . It looks like a good place to start.

+16
source

Each popular Perl web platform comes with its own server: Catalyst, CGI :: Application, Jifty. The most popular and dry is Catalyst (don't know about DRY in Jifty).

There are also aggregators of test results, such as Smolder.

+7
source

Catalyst ships with its own script/myapp_server.pl . You can also use ours without a reverse proxy using the built-in server, but in this case it is recommended to use Catalyst :: Engine :: HTTP :: Prefork : CATALYST_ENGINE='HTTP::Prefork' script/myapp_server.pl

I believe Jifty also has a built-in dev server, as well as Squatting , but I have not used any of them.

+6
source

Maybe Catalyst . I don’t know if it has a standalone server, but it is Perl with MVC,

+3
source

All Articles