
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
url-router
Advanced tools
A Trie-based router.
The constructor's routes parameter changed to key-value object that key is pattern and value is handler.
npm install url-router
NOTE: This package is written in ES2020 syntax and not transpiled. It is tested only on Node.js v14 LTS. To use it in old browsers, you should transpile the code using tools such as Babel.
import assert from 'assert';
import Router from 'url-router';
const router = new Router({
'/foo': 1,
'/foo/bar': 2,
'/user/:id': 3,
'/user/:id/:page': 4,
'/people/:name(\\w+)': 5,
'(.*)': 6,
'/:year(\\d+)-:month(\\d+)': 7
});
assert.deepStrictEqual(
router.find('/foo'),
{
handler: 1,
params: {}
}
);
assert.deepStrictEqual(
router.find('/foo/bar'),
{
handler: 2,
params: {}
}
);
assert.deepStrictEqual(
router.find('/user/123'),
{
handler: 3,
params: {
id: '123'
}
}
);
assert.deepStrictEqual(
router.find('/user/456/articles'),
{
handler: 4,
params: {
id: '456',
page: 'articles'
}
}
);
assert.deepStrictEqual(
router.find('/people/john'),
{
handler: 5,
params: {
name: 'john'
}
}
);
assert.deepStrictEqual(
router.find('/404'),
{
handler: 6,
params: {}
}
);
assert.deepStrictEqual(
router.find('/2019-11'),
{
handler: 7,
params: {
year: '2019',
month: '11'
}
}
);
const routes = {
pattern_1: handler_1,
pattern_2: handler_2,
...
};
router = new Router(routes);
Creates a router instance.
Optional. A key-value object that key is pattern and value is handler.
See router.add() below for how to define pattern and handler.
router.add(pattern, handler)
Adds a route entry.
String. The pattern to match against the request path.
You can define params in pattern, for example:
const router = new Router();
router.add('/people/:username/:year(\\d+)-:month(\\d+)/:articleId(\\d+)', handler);
const result = router.find('/people/johnsmith/2020-02/123');
/*
result:
{
handler: handler,
params: {
username: 'johnsmith',
year: '2020',
month: '02,
articleId: '123'
}
}
*/
If regex is omitted, it defaults to [^/]+.
You can also use regex without setting the parameter name, for example:
router.add('(.*)', NotFound)
This defines a catch-all route.
any. The handler you wish to handle the request.
Based on your framework design, the handler can be a function to handle the request,
or the file path to your controller file, or an object (such as Vue component), etc.
The router instance. So you could use method chaining:
router
.add('/foo', foo)
.add('/bar', bar)
router.find(path)
Finds the route which matches the path.
String. The request path.
handler and params of the route:
{
handler,
params
}
Or null if not found.
FAQs
A Trie-based router
The npm package url-router receives a total of 267 weekly downloads. As such, url-router popularity was classified as not popular.
We found that url-router demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.