javascript-route-matcher icon indicating copy to clipboard operation
javascript-route-matcher copied to clipboard

A simple route matching / url building utility. Intended to be included as part of a larger routing library.

Results 5 javascript-route-matcher issues
Sort by recently updated
recently updated
newest added

Hi, This seems to work only with relative URLs. Can you please extend the functionality to support full-length URLs as well? We need the solution for below use cases: **1....

Included #3 No breaking changes.

``` var route = routeMatcher("user/:a/:b"); route.parse('user'); // should work route.parse('user/foo'); // should work (currently doesn't) route.parse('user/foo/'); // should work route.parse('user/foo/bar'); // should work route.parse('user/foo/bar/'); // should work (currently doesn't) ```...

@cowboy if you don't want this that's okay. It's probably a small issue. We're using [wiredep](https://github.com/taptapship/wiredep) via [a grunt plugin](https://github.com/stephenplusplus/grunt-wiredep) that came with the [angular-fullstack-generator](https://github.com/DaftMonk/generator-angular-fullstack) we used to kickstart our...