SweetPea::Application - A full stack web framework for the rest of us.


SweetPea-Application documentation  | view source Contained in the SweetPea-Application distribution.

Index


NAME

Top

SweetPea::Application - A full stack web framework for the rest of us.

VERSION

Top

Version 0.025

SYNOPSIS

Top

SweetPea::Application is a full-stack web application framework built atop of the SweetPea web framework. SweetPea::Application aims to provide all the functionality common to building complete and robust web applications via a suite of packages through a unified API.

    # build a full-stack web application (from the cli)
    sweetpea make -f

    use SweetPea;
    sweet->routes({

        '/' => sub {
            shift->forward('/way');
        },

        '/way' => sub {
            shift->html('I am the way the truth and the light!');
        }

    })->run;

To Get Started, Review SweetPea::Cli::Documentation or SweetPea::Application::Documentation.

AUTHOR

Top

Al Newkirk, <al.newkirk at awnstudio.com>

BUGS

Top

Please report any bugs or feature requests to bug-sweetpea-application at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=SweetPea-Application. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc SweetPea::Application

You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=SweetPea-Application

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/SweetPea-Application

* CPAN Ratings

http://cpanratings.perl.org/d/SweetPea-Application

* Search CPAN

http://search.cpan.org/dist/SweetPea-Application/

ACKNOWLEDGEMENTS

Top

COPYRIGHT & LICENSE

Top


SweetPea-Application documentation  | view source Contained in the SweetPea-Application distribution.