i know and have read somewhere that CGI is no longer part of the standard Perl module distribution that Perl comes with

So what does that mean?

The answer is, it means nothing. CGI is perfectly useful, widely used, well supported, and a good introduction to web application programming.

In the old, old days programmers used CGI's HTML-printing methods to output their script's HTML, often in the main program code. This is indeed bad practice because of the lack of separation between program logic and output presentation, and since almost 20 years it has been recommended to use a different method to output your HTML - Text::Template or the Template Toolkit or Template::Tiny are good choices to explore.

But CGI is an exceptionally well-seasoned package for beginning web application programmers and for experienced developers who need a quick way to build simple interactive sites/pages, and you should not overlook it because of a remark that you read on-line, without understanding what that means. Here's a somewhat recent discussion on the subject.

Having said all that, in regard to the "modern" frameworks, I would say this:

In any case in your situation I would experiment with building a small test application in each of the above before hitching my wagon to one particular horse.

Hope this helps!

The way forward always starts with a minimal test.

In reply to Re: Suggestions on study materials for modern perl web development by 1nickt
in thread Suggestions on study materials for modern perl web development by 5plit_func

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.