properjs-matchroute
v0.3.0
Published
Wildcard route matching for urls with !num and !slug conditions.
Downloads
11
Maintainers
Readme
ProperJS // MatchRoute
Wildcard route matching for urls with !num and !slug conditions.
Installation
npm install properjs-matchroute --save-dev
Usage
Alone this utility may not be that useful, which is why it's used with the ProperJS/Router.
import MatchRoute = from "properjs-matchroute";
const routes = [
// Known route
"some/route",
// Unknown route
"another/:slug",
// Enforce Number on last URI segment
"also/:slug/:num!num"
];
const matcher = new MatchRoute( routes );
// Test url against routes
console.log( "test", matcher.test( "http://localhost:9999/some/route" ) );
// Compare a route against a url
console.log( "compare", matcher.compare( "some/:slug", "http://localhost:9999/some/route" ) );
// Parse a url against routes config
console.log( "parse", matcher.parse( "http://localhost:9999/some/route", routes ) );
// Get params property from .parse()
console.log( "params", matcher.params( "http://localhost:9999/another/thing" ) );
// Set routes config after initialization
// Wildcard any route that is non-external to your domain
matcher.config( ["*"] );