super-state-machine-router
TypeScript icon, indicating that this package has built-in type declarations

1.1.1 • Public • Published

super-state-machine-router test

An efficient URL router with the following features:

  • O(n) routing time, regardless of the number of routes
  • Route conflict/ambiguity detection (i.e., the order that routes are registered does not matter)
  • Wildcard path segments are supported via /foo/{myVariable}
    • Wilcards can also match one or more segments with /foo/{myVariable}+
    • Or zero or more segmetns with /foo/{myVariable}*
  • Under the hood, it uses a compressed, precise state machine with low memory overhead

Installation

npm install super-state-machine-router

Requires Node.js v14.x.x or later.

Usage

const { RouterBuilder } = require('super-state-machine-router');

const router = new RouterBuilder()
	.add('/', myIndexPath)
	.add('/index.html', myIndexPath)
	.add('/style.css', myStylesheet)
	.add('/app.js', myScript)
	.add('/login/{loginMethod}', myLoginPage)
	.add('/api/{endpoint}+', myAPI)
	.build();

const match = router.route('/api/foo/bar/baz');
assert(match === myAPI);

const noMatch = router.route('/not/a/real/page');
assert(noMatch === undefined);

API

class RouterBuilder

RouterBuilder lets you build routers. You add routes to a builder by calling .add() and, when you're done adding routes, you can build the actual router with .build().

builder.add(routeDefinition, value) -> this

Adds a new route to the builder. The route definition should be a string starting with /. Trailing slashes and empty path segments are not allowed. The route can include percent-encodings.

The value that you pass to the second argument gets associated with the route, and will be returned by the router when the route is matched.

Any path segment within the route definition can be {someVariable}, which will match any sequence of one or more characters (except /). You can have multiple variable segments within the same route.

builder.add('/article/{id}/comments/{commentId}', someValue);

If the last segment is a variable, it may be followed by + or *, which allows it to match any number of additional segments afterwards. A variable with + must match at least one segment, but a variable with * can match zero segments.

// Matches "/api/foo" and "/api/foo/bar", but not "/api"
builder.add('/api/{endpoint}+', someValue);

// Matches "/redirect/foo/bar" and "/redirect"
builder.add('/redirect/{newPath}*', someValue);

Note that variables cannot be combined with literal characters in the same segment; either a segment is a variable, or it is a literal string.

builder.addLiteral(routeDefinition, value) -> this

This is the same as builder.add(), except all special characters within the route definition are interpreted literally. As a result, percent-encodings and variables cannot be used within the route definition.

builder.build() -> Router

Constructs and returns a router based on the routes that have been added to the builder thus far. If there are multiple routes which could be matched by the same URL pathname, the ambiguity is detected and an error is thrown.

class Router

This class lets you efficiently match URL pathnames against a set of routes.

You cannot construct this class directly (you have to use the RouterBuilder). However, if you pass a router to another thread (using worker_threads), you can use new Router(oldRouter) to revive the router within the worker thread, with the correct prototype chain.

router.route(url, [outVariables]) -> value or undefined

Attempts to match the given url (a string or URL object) with a route. If a matching route is found, it returns the value that was originally associated with the route. If no matching route is found, it returns undefined.

Percent-encodings are understood and interpretted correctly.

If you pass an object as the second parameter, the values of any variables within the matching route will be assigned to the object that you provide.

const router = new RouterBuilder().add('/{first}/{second}', 123).build();

const variables = {};
const match = router.route('/foo/bar', variables);

assert(match === 123);
assert(variables.first === 'foo');
assert(variables.second === 'bar');

router.map(callback) -> Router

Creates a new router that is equivalent to this one except that each route's associated value is mapped through the given callback function.

Using this method is more efficient than building multiple separate routers because the underlying state machine (which may be quite large) will be shared among the routers created by this method.

const newRouter = oldRouter.map(value => value.id);

Iterable protocol

Routers are iterables, which means you can iterate over them using a for-of loop to get each route's associated value (i.e., the values that may be returned by router.route()).

for (const value of router) {
    console.log(value);
}

License

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i super-state-machine-router

Weekly Downloads

1

Version

1.1.1

License

MIT

Unpacked Size

26.2 kB

Total Files

11

Last publish

Collaborators

  • joshuawise