9 years of Mojolicious! Celebratory release 8.28 with async/await!
Mojolicious is a modern web framework in Perl. Mojo is a subsidiary project that develops a set of tools for the framework. Modules from the Mojo::* family are widely used in third-party projects. Example code: use Mojo::Base -strict, -async; async sub hello_p { return 'Hello Mojo!'; } hello_p()->then(sub { say @_ })->wait; More examples can be found in the documentation. Previously, the Perlfoundation allocated a grant for the development of the Future::AsyncAwait module. Some […]
