|
||||
---|---|---|---|---|
.. | ||||
History.md | 11e3a9652a | vor 7 Jahren | ||
LICENSE | 11e3a9652a | vor 7 Jahren | ||
Readme.md | 11e3a9652a | vor 7 Jahren | ||
index.js | 11e3a9652a | vor 7 Jahren | ||
package.json | 11e3a9652a | vor 7 Jahren |
Turn an Express-style path string such as /user/:name
into a regular expression.
Note: This is a legacy branch. You should upgrade to 1.x
.
var pathToRegexp = require('path-to-regexp');
var keys = [];
var exp = pathToRegexp('/foo/:bar', keys);
//keys = ['bar']
//exp = /^\/foo\/(?:([^\/]+?))\/?$/i
You can see a live demo of this library in use at express-route-tester.
MIT