routingkit

Creator: coderz1093

Last updated:

0 purchases

routingkit Image
routingkit Images
Add to Cart

Description:

routingkit

RoutingKit








Routing Kit - Lightweight and fast router for Dart.

Installation #
Run this command:
dart pub add routingkit
copied to clipboard
With Flutter:
flutter pub add routingkit
copied to clipboard
Usage #
Create a router instance and insert routes #
import "routingkit";

const router = createRouter();

addRoute(router, 'get', '/path', 'Static path');
addRoute(router, 'get', '/path/:name', 'Param route');
addRoute(router, 'get', '/path/*', 'Unnamed param route');
addRoute(router, 'get', '/path/**', 'Wildcard Route');
addRoute(router, 'get', '/path/**:rset', 'Named wildcard route');
addRoute(router, 'get', '/files/:dir/:filename.:format,v:version', 'Mixed Route');
copied to clipboard
Match route to access matched data #
// {data: Static path}
findRoute(router, 'get', '/path')

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

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

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

// `null`, No match.
findRoute(router, 'get', '/')
copied to clipboard
License #
RoutingKit is open-sourced software licensed under the MIT license.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.

Related Products

More From This Creator