
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
global-router
Advanced tools
The idea is to create a router, which should play well in all environments, both in a node, client and universal application.
To create add routes, use the Route.add method, with the as a string. * matches anything while :params becomes parameters.
The second parameter can be anything. These will be returned as an array for all matched routes when resolving an URL
var Router = require('global-router').Router;
var router = new Router();
router.add('/user/*', 'route1');
router.add('/user/:id', 'route2');
router.add('/user/:id/*', 'route3');
router.add('/user/*/images', 'route4');
router.add('/user/:id/images', 'route5');
router.add('/user/:id/details', 'route6');
To find url matches resolve is called on the router instance, which will output all matched routes.
router.resolve('/user/1234/images');
will output
[
{
"state": {
"params": {}
},
"result": "route1"
},
{
"state": {
"params": {
"id": "1234"
}
},
"result": "route3"
},
{
"state": {
"params": {}
},
"result": "route4"
},
{
"state": {
"params": {
"id": "1234"
}
},
"result": "route5"
},
]
To change output, for instance to create a React tree from elements, a processResponse(current, previous) can be send to the router, which will loop through all routes, and feed the returned from previous call to the next call.
var router = new Router({
processResponse: function(current, previous) {
if (previous) {
return React.cloneElement(current.result, null, previous);
} else {
return current.result;
}
}
});
router.add('/user/*', <User />);
router.add('/user/:id', <Details />);
Using router.resolve('/user/1234') in the example above would then result in
<User>
<Details />
</User>
FAQs
A router which can be used for a bit of everything
The npm package global-router receives a total of 9 weekly downloads. As such, global-router popularity was classified as not popular.
We found that global-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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.