DEV Community

Yuki Kimoto - SPVM Author
Yuki Kimoto - SPVM Author

Posted on

Perl Web Framework Mojolicious

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.

Top comments (1)

Collapse
 
sigzero profile image
sigzero

Mojolicious is an awesome framework.