route-node
TypeScript icon, indicating that this package has built-in type declarations

4.1.1 • Public • Published

npm version Build Status Coverage Status

route-node

A package to create a tree (trie) of named routes, allowing you to build and match routes.

$ npm install route-node --save

Creating your tree

To read about how to define paths, look at path-parser README

import rootNode from 'route-node'
 
// Create nodes
const usersNode = new RouteNode('users', '/users', [
  new RouteNode('list', '/list'),
  new RouteNode('view', '/view/:id')
])
 
// You can also use plain objects
const ordersNode = new RouteNode('orders', '/orders', [
  { name: 'pending', path: '/pending' },
  { name: 'completed', path: '/completed' },
  { name: 'view', path: '/view/:id' }
])
 
// Creating a top root node
const rootNode = new RouteNode('', '', [ordersNode, usersNode])
 
// Add nodes programmatically
rootNode.add(new RouteNode('home', '/home'))

/ paths (empty paths)

When using a deeply nested / path, it will automatically be matched when its parent is matched.

const tree = new RouteNode('', '', [
  new RouteNode('admin', '/admin', [
    new RouteNode('home', '/'),
    new RouteNode('users', '/users')
  ])
])
 
tree.matchPath('/admin') // => { name: 'admin.home', params: {} }
tree.buildPath('admin.home', {}, { trailingSlashMode: 'never' }) // => '/admin'

Options

const node = new RouteNode('admin', '/admin', [], options)

Where options can contain:

  • onAdd: a callback called when adding routes (with contructor or .add), you can pass a callback which will be executed for each route added successfully to the tree.
  • parent: the node parent
  • finalSort: to sort children (matching order) after having added all children routes (rather than on each add)
  • sort: whether to sort on each add or not (default to true, overriden by finalSort)

Building and matching routes

node.buildPath(routeName: string, params?: object, options?: BuildOptions): string

rootNode.buildPath('users.view', { id: 1 }) // => "/users/view/1"

Performance

Node children need to be sorted for matching purposes. By default this operation happens after having added all routes.

matchPath(path: string, options?: MatchOptions): RouteNodeState | null

rootNode.matchPath('/users/view/1')
// => {name: "users.view", params: {id: "1"}}

Options

Options available:

  • 'urlParamsEncoding, to specify how URL parameters are encoded and decoded:
    • 'default': encodeURIComponent and decodeURIComponent are used but some characters to encode and decode URL parameters, but some characters are preserved when encoding (sub-delimiters:+,:,',!,,,;,*).
    • 'uriComponent': use encodeURIComponent and decodeURIComponent for encoding and decoding URL parameters.
    • 'uri': use encodeURI and `decodeURI for encoding amd decoding URL parameters.
    • 'none': no encoding or decoding is performed
    • 'legacy': the approach for version 5.x and below (not recommended)
  • trailingSlashMode:
    • 'default': building follows path definitions
    • 'never': when building, trailing slash is removed
    • 'always': when building, trailing slash is added
  • queryParamsMode:
    • 'default': a path will match with any query parameters added, but when building, extra parameters won't appear in the returned path.
    • 'strict': a path with query parameters which were not listed in node definition will cause a match to be unsuccessful. When building, extra parameters won't appear in the returned path.
    • 'loose': a path will match with any query parameters added, and when building, extra parameters will appear in the returned path.
  • queryParams: options for query parameters
  • caseSensitive: whether path matching is case sensitive or not (default to false)

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
4.1.18,520latest

Version History

VersionDownloads (Last 7 Days)Published
4.1.18,520
4.1.00
4.0.00
3.4.27,616
3.4.10
3.4.00
3.3.02
3.2.11
3.2.089
3.1.20
3.1.10
3.1.0286
3.0.31
3.0.21
3.0.10
3.0.01
2.0.3402
2.0.2564
2.0.11
2.0.00
1.11.00
1.10.00
1.9.00
1.8.51
1.8.40
1.8.30
1.8.21,090
1.8.11
1.8.00
1.7.22
1.7.12
1.7.00
1.6.10
1.6.01
1.5.20
1.5.10
1.5.01
1.4.7314
1.4.61
1.4.50
1.4.40
1.4.31
1.4.21
1.4.10
1.4.00
1.3.40
1.3.30
1.3.20
1.3.12
1.3.01
1.2.10
1.2.00
1.1.02
1.0.20
1.0.10
1.0.01
0.6.00
0.5.212
0.5.10
0.5.00
0.4.31
0.4.20
0.4.11
0.4.02
0.3.21
0.3.10
0.3.01
0.2.30
0.2.21
0.2.10
0.2.00
0.1.50
0.1.40
0.1.31
0.1.21
0.1.10
0.1.01
0.0.81
0.0.71
0.0.60
0.0.52
0.0.41
0.0.30
0.0.22
0.0.10

Package Sidebar

Install

npm i route-node

Weekly Downloads

14,865

Version

4.1.1

License

MIT

Unpacked Size

175 kB

Total Files

17

Last publish

Collaborators

  • troch