张益铭 9064b372e8 docs:更新文档 há 4 anos atrás
..
node_modules 9064b372e8 docs:更新文档 há 4 anos atrás
LICENSE 9064b372e8 docs:更新文档 há 4 anos atrás
README.md 9064b372e8 docs:更新文档 há 4 anos atrás
index.js 9064b372e8 docs:更新文档 há 4 anos atrás
package.json 9064b372e8 docs:更新文档 há 4 anos atrás

README.md

path match

NPM version Build status Test coverage Dependency Status License Downloads

Thin wrapper around path-to-regexp to make extracting the param names easier.

var route = require('path-match')({
  // path-to-regexp options
  sensitive: false,
  strict: false,
  end: false,
});

// create a match function from a route
var match = route('/post/:id');

// match a route
var parse = require('url').parse;
require('http').createServer(function (req, res) {
  var params = match(parse(req.url).pathname);

  // no match
  if (params === false) {
    res.statusCode = 404;
    res.end();
    return;
  }

  // the matched id
  var id = params.id;

  // do stuff with the ID
})