routingkit 3.0.3 copy "routingkit: ^3.0.3" to clipboard
routingkit: ^3.0.3 copied to clipboard

Routing Kit - Lightweight and fast router. - A composable pure function routing kit.

RoutingKit

Pub Version Test License Sponsors X (formerly Twitter) Follow

Routing Kit - Lightweight and fast router for Dart.

Installation #

Run this command:

dart pub add routingkit

With Flutter:

flutter pub add routingkit

Usage #

Create a router instance and insert routes #

import from "routingkit";

const router = createRouter();

router.add('get', '/path', 'Static path');
router.add('get', '/path/:name', 'Param route');
router.add('get', '/path/*', 'Unnamed param route');
router.add('get', '/path/**', 'Wildcard Route');
router.add('get', '/path/**:rset', 'Named wildcard route');
router.add('get', '/files/:dir/:filename.:format,v:version', 'Mixed Route');

Match route to access matched data #

// {data: Static path}
router.find('get', '/path')

// {data: Param route, params: {name: seven}}
router.find('get', '/path/seven')

// {data: Wildcard Route, params: {_: foo/bar/baz}}
router.find('get', '/path/foo/bar/baz')

// {data: Mixed Route, params: {dir: dart, filename: pubspec, format: yaml, version: 1}}
router.find('get', '/files/dart/pubspec.yaml,v1')

// `null`, No match.
router.find('get', '/')

License #

RoutingKit is open-sourced software licensed under the MIT license.

3
likes
160
pub points
41%
popularity

Publisher

verified publisherodroe.com

Routing Kit - Lightweight and fast router. - A composable pure function routing kit.

Repository (GitHub)
View/report issues

Topics

#router #routing #route #fast-router #routing-kit

Documentation

API reference

Funding

Consider supporting this project:

github.com

License

MIT (license)

More

Packages that depend on routingkit