Rand Stats

Router::Right

zef:knarkhov

Advanced URL router in Raku

Advanced, framework-agnostic URL routing engine for web applications in Raku programming language:

Synopsys

use v6.d;
use Router::Right;

my $route = Router::Right.new;

$route.add(
    :name( 'dynaroute' ),
    :path( 'GET /dynamic/{id:<[\d]>+}/{tag}/{item}' ),
    :payload( 'Dynamic#Route' ),
);

if !(
    my %m = $route.match(
        %*ENV<REQUEST_URI> || ~(),
    )
) {
    say $route.error;
}
else {
    say %m.gist;
}

Methods

Examples

Wiki pages

Full documentation is available at Router::Right wiki pages.

License

Router::Right module is free and open source software, so you can redistribute it and/or modify it under the terms of the Artistic License 2.0.

Author

Please contact me via Matrix or LinkedIn. Your feedback is welcome at narkhov.pro.

Credits

This module was inspired by origin Perl5 Router::Right developed by @mla. Check it out at Github.