Turn an Express-style path string such as /user/:name
into a regular expression.
var pathToRegexp = require('path-to-regexp');
// pathToRegexp(path, keys, options);
- path A string in the express format, an array of strings, or a regular expression.
- keys An array to be populated with the keys present in the url.
- options
- options.sensitive When set to
true
the route will be case sensitive. - options.strict When set to
true
a slash is allowed to be trailing the path. - options.end When set to
false
the path will match at the beginning.
- options.sensitive When set to
var keys = [];
var re = pathToRegexp('/foo/:bar', keys);
// re = /^\/foo\/([^\/]+?)\/?$/i
// keys = ['bar']
The path has the ability to define parameters and automatically populate the keys array.
Named parameters are defined by prefixing a colon to the parameter name (:foo
). By default, this parameter will match up to the next path segment.
var re = pathToRegexp('/:foo/:bar', keys);
// keys = ['foo', 'bar']
re.exec('/test/route');
//=> ['/test/route', 'test', 'route']
Parameters can be suffixed with a question mark (?
) to make the entire parameter optional. This will also make any prefixed path delimiter optional (/
or .
).
var re = pathToRegexp('/:foo/:bar?', keys);
// keys = ['foo', 'bar']
re.exec('/test');
//=> ['/test', 'test', undefined]
re.exec('/test/route');
//=> ['/test', 'test', 'route']
Parameters can be suffixed with an asterisk (*
) to denote a zero or more parameter match. The prefixed path delimiter is also taken into account for the match.
var re = pathToRegexp('/:foo*', keys);
// keys = ['foo']
re.exec('/');
//=> ['/', undefined]
re.exec('/bar/baz');
//=> ['/bar/baz', 'bar/baz']
Parameters can be suffixed with a plus sign (+
) to denote a one or more parameters match. The prefixed path delimiter is included in the match.
var re = pathToRegexp('/:foo+', keys);
// keys = ['foo']
re.exec('/');
//=> null
re.exec('/bar/baz');
//=> ['/bar/baz', 'bar/baz']
All parameters can be provided a custom matching regexp and override the default. Please note: Backslashes need to be escaped in strings.
var re = pathToRegexp('/:foo(\\d+)', keys);
// keys = ['foo']
re.exec('/123');
//=> ['/123', '123']
re.exec('/abc');
//=> null
It is possible to write an unnamed parameter that is only a matching group. It works the same as a named parameter, except it will be numerically indexed.
var re = pathToRegexp('/:foo/(.*)', keys);
// keys = ['foo', '0']
re.exec('/test/route');
//=> ['/test/route', 'test', 'route']
You can see a live demo of this library in use at express-route-tester.
MIT