0.1.0 • Published 11 years ago

urlpattern v0.1.0

Weekly downloads
16
License
-
Repository
github
Last release
11 years ago

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/](http://jaredhanson.net/)