route-trie
A trie-based URL router.
route-trie is a trie-based URL router.
Its goal is only to define and match URLs.
It does not handle methods, headers, controllers, views, etc., in anyway.
It is faster than traditional, linear, regular expression-matching routers, although insignficantly,
and scales with the number of routes.
The purpose of this router isn't for performance, but to bring more structure to URL routing.
The intention is for you to build a framework on top either in node.js or in the browser.
Implementations:
- toa-router A trie router for toa(server).
- hirouter HTML5 history and router, simple, powerful and no framework(browser).
Browser Support
IE9+
Demo
Installation
Node.js:
npm install route-trie
Bower:
bower install route-trie
API
var Trie = require('route-trie')
Trie([flagI])
Create a trie.
flagI
: {Boolean}, default false
, ignore case
return trie
object.
var trie1 = new Trie()
var trie2 = new Trie(true)
Trie.prototype.define(pattern)
Define a node
for the pattern
, The same pattern will always return the same node
. The result node
, will be an emtpy object, it has a private and not enumerable property _nodeState
. _nodeState
is a object that have name
, pattern
, childNodes
and so on. You can mount properties and methods on the node
, but not on _nodeState
.
-
pattern
: {String}, each fragment of the pattern, delimited by a /
, can have the following signature:
-
string
- simple string.
Define /post
will matched:
'/post'
-
string|string
- |
separated strings.
Define /post|task
will matched:
'/post'
'/task'
-
:name
- Wildcard route matched to a name.
Define /:type
will matched:
'/post', with params `{type: 'post'}`
'/task', with params `{type: 'task'}`
-
prefix:name
- Wildcard route matched to a name.
Define /api:type
will matched:
'/apipost', with params `{type: 'post'}`
'/apitask', with params `{type: 'task'}`
-
(regex)
- A regular expression match without saving the parameter (not recommended). (Also see note below.)
Define /(post|task)
will matched:
'/post'
'/task'
Define /([a-z0-9]{6})
will matched:
'/abcdef'
'/123456'
-
:name(regex)
- Named regular expression match.
Define /:type/:id([a-z0-9]{6})
will matched:
'/post/abcdef', with params `{type: 'post', id: 'abcdef'}`
'/task/123456', with params `{type: 'task', id: '123456'}`
-
prefix:name(regex)
- Named regular expression match. (Also see note below.)
Define /api:type/id:id([a-z0-9]{6})
will matched:
'/apipost/idabcdef', with params `{type: 'post', id: 'abcdef'}`
'/apitask/id123456', with params `{type: 'task', id: '123456'}`
-
(*)
- Match remaining path without saving the parameter (not recommended).
Define /(*)
will match all path.
-
:name(*)
- Named regular expression match, match remaining path.
Define /:type/:other(*)
will matched:
'/post/abcdef', with params `{type: 'post', other: 'abcdef'}`
'/post/abcdef/ghi', with params `{type: 'post', other: 'abcdef/ghi'}`
'/a/b/c/d/e', with params `{type: 'a', other: 'b/c/d/e'}`
Returns a node
object:
var node = trie.define('/:type/:id([a-z0-9]{6})')
assert(node._nodeState.pattern === '/:type/:id([a-z0-9]{6})')
assert(node !== trie.define('/:type'))
assert(node !== trie.define('/post'))
assert(node === trie.define('/:type/:id([a-z0-9]{6})'))
assert(trie.define('/:type') === trie.define('/:type1'))
Notice for regex pattern:
As mentioned above, you may use regular expressions defining node:
var node = trie.define('/abc/([0-9]{2})')
assert(trie.match('/abc/47').node === node)
But due to JavaScript String Escape Notation: '\d' === 'd'
, trie.define('/abc/(\d{2})') === trie.define('/abc/(d{2})')
.
trie.define
accept a string literal, not a regex literal, the \
maybe be escaped!
var node = trie.define('/abc/(\d{2})')
trie.match('/abc/47')
assert(trie.match('/abc/dd').node === node)
The same for \w
, \S
, etc.
To use backslash (\
) in regular expression you have to escape it manually:
var node = trie.define('/abc/(\\w{2})')
assert(trie.match('/abc/ab').node === node)
Trie.prototype.match(path[, multiMatch])
path
: {String}, URL pathname to match and get the defined node
multiMatch
: {Boolean}, Optional, default: false
. If true, a path maybe matched one more node
s.
Return matched
object:
-
Default mode: return null
if no node matched, otherwise return an object with the following properties:
params
: {Object}, A list of named parameters, ex, match.params.id === 'abc123'
.node
: {Object}, The matched node.
var node = trie.define('/:type/:id([a-z0-9]{6}')
var match = trie.match('/post')
match = trie.match('/post/abc123')
-
multiMatch mode: will always return an object with the following properties:
params
: {Object}, A list of named parameters.nodes
: {Array}, if no node matched, it will be a empty array, otherwise will be a array of matched nodes.