Erik Römmelt 538894d4a6 Add server; add node_modules; add public folder; add package.json | 6 years ago | |
---|---|---|
.. | ||
History.md | 6 years ago | |
LICENSE | 6 years ago | |
Readme.md | 6 years ago | |
index.js | 6 years ago | |
package.json | 6 years ago |
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