Skip to content

Latest commit

 

History

History
46 lines (27 loc) · 898 Bytes

README.md

File metadata and controls

46 lines (27 loc) · 898 Bytes

urlpattern

Parse and transform URL patterns.

Install

$ npm install urlpattern

Usage

Express-style Patterns

Parse a pattern into a RegExp, and its constituent placeholders.

var pattern = require('urlpattern').express;

var placeholders = [];
var regexp = pattern.parse('/user/:id', placeholders);

Subsitute variables into a pattern.

var pattern = require('urlpattern').express;

pattern.transform('/user/:id', { id: '1234' });
// => '/user/1234'

Tests

$ npm install
$ npm test

Build Status

Credits

License

The MIT License

Copyright (c) 2013 Jared Hanson <http://jaredhanson.net/>