NAME

Suffit - Suffit Library Bundle

SYNOPSIS

#!/usr/bin/perl -w
package MyApp;
our $VERSION = '0.01';
use parent 'Suffit';
sub init { shift->routes->any('/' => {text => 'Hello World!'}) }
1;

package main;
use Mojo::Server;
Mojo::Server->new->build_app('MyApp', datadir => '/tmp')->start();

# Now try to run it:
# perl myapp.pl daemon -l http://*:8080

DESCRIPTION

Suffit Library Bundle combines multiple complementary libraries into a single cohesive package, enabling modular, scalable, and efficient development

EXAMPLE

See eg/myapp.pl file

HISTORY

See Changes file

TO DO

See TODO file

SEE ALSO

Acrux, WWW::Suffit, Mojolicious, WWW::Suffit::Server

AUTHOR

Serż Minus (Sergey Lepenkov) https://www.serzik.com <abalama@cpan.org>

COPYRIGHT

Copyright (C) 1998-2025 D&D Corporation. All Rights Reserved

LICENSE

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See LICENSE file and https://dev.perl.org/licenses/