All of them, actually.

No Perl 5 framework I know of uses any Perl 5 features that are clumsy in Perl 6.

For example the Catalyst approach of using subroutine attributes for dispatching can be replaced with subroutine traits, so for example you could write (mimicking an example from Catalyst::Manual::Tutorial::03_MoreCatalystBasics):

method list($c) is Local { $c.stash(books => $c.model('DB::Book).all); $c.stash(template => 'books/list.tt2'); }

In fact subroutine traits work in Rakudo today, so the only thing that prevents people from porting Catalyst to Perl 6 is speed and development time.

I don't think other web frameworks heavily rely on intricate Perl 5 features that aren't yet in Rakudo, so there are many other possible targets for porting too.

Update: As a proof of concept I've started porting CGI::Application to Perl 6. Of course it's far from being finished, but I got basic dispatch, hooks and error mode running in with half a day's effort (and many distractions inbetween).


In reply to Re^5: New PerlMonks for Perl 6 - A Good Idea by moritz
in thread New PerlMonks for Perl 6 - A Good Idea by jdporter

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.