Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
route-node
Advanced tools
A package to create a tree (trie) of named routes. It is similar to routington except that nodes are not added by splitting path by segment ("/"). Instead the tree is built with the supplied nodes, meaning each node is a valid route.
This module is being used for developing a router, API is subject to change without notice
$ npm install route-node --save
Building your route tree:
var RootNode = require('route-node');
// Create nodes
var usersNode = new RouteNode('users', '/users', [
new RouteNode('list', '/list'),
new RouteNode('view', '/view/:id')
]);
var ordersNode = new RouteNode('orders', '/orders', [
new RouteNode('pending', '/pending'),
new RouteNode('completed', '/completed'),
new RouteNode('view', '/view/:id')
]);
// Creating a top node
var rootNode = new RouteNode('', '', [
ordersNode,
usersNode
]);
// Add nodes programmatically
rootNode.add(new RouteNode('home', '/home'));
And then build paths, or match your paths against your tree:
rootNode.getPath('users.view'); // => "/users/view/:id"
rootNode.buildPath('users.view', {id: 1}); // => "/users/view/1"
rootNode.matchPath('/users/view/1'); // => {name: "users.view", params: {id: "1"}}
FAQs
A package to create a tree of named routes
We found that route-node 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
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.