Perl Web Framework Mojolicious

Yuki Kimoto - SPVM Author - Mar 8 '21 - - Dev Community

Perl have Web Framework Mojolicious.

https://mojolicious.org/

We may be familiar with the name Rails of Ruby.

We may be familiar with the name Django of Python.

Mojolicious may not be famous, on the other hand its performance and simplicity are very good.

use Mojolicious::Lite;
get '/' => {text => 'Hello'};
app->start;
Enter fullscreen mode Exit fullscreen mode

Young people may have a prejudice against Perl.

Once you've experienced Mojolicious, you'll find that the prejudice is actually a prejudice.

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .