I think you need to consider what you are wanting to achieve in your web app. Doubtless Catalyst could help, though there are a few of your questions that are ringing alarm bells in me.

What platform are you intending to deploy your server technology onto? If this is Linux, I seriously recommend developing on Linux. If you are aiming to produce something completely portable, while that is a very noble aim, you are going to need to be very careful both in keeping your code portable, and in making sure that dependent modules work fully across all platforms. This includes not just those needed by Catalyst itself, but Catalyst plugins etc. needed by your application.

The performance characteristics will be completely different between Windows and Linux, needless to say.

My recommendation is to install Catalyst on a Linux box, and work through the tutorial. Just now, I've had a go at installing Catalyst::Devel on a WinXP machine that is running Strawberry perl 5.8.8. This failed as Data::Alias needs perl >= 5.8.9. You might be interested in knowing that the following modules contain XS code, i.e. make use of a C compiler for building: Template::Toolkit (though you can choose to answer no to the question about building the XS code for stashes) and Class::C3::XS.

--
wetware hacker
(Qualified NLP Master Practitioner and Trainer)


In reply to Re: Using Catalyst by rinceWind
in thread Using Catalyst by vit

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.