
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.
tidy-path-tree
Advanced tools
tidy-path-treePath tree that used Prefix Tree(Trie Tree)
$ npm install tidy-path-tree --save
// for typescript
import { PathTree } from 'tidy-path-tree'
const tree = new PathTree<string>()
tree.add('/a/b/:name', 'data')
/**
* will returns : {
* path: 'a/b/:name',
* params: {
* name: 'tidy'
* }
* }
*/
const found = tree.find('/a/b/tidy')
Path: Layer ( Layer Delimiter )* GlobStarEnd?
Layer: Seg*
Seg: Param | Text | ReGroup
GlobStarEnd: Delimiter "**"
ReGroup: "(" <RegularExpressBody> ")"
Text: TextChar+
TextChar:
- <Char not Delimiter && not in '\r\n:(/?\\'>
- BackslashChar
BackslashChar: "\" <Char not in "\r\n">
Param = ":" <JSIdentifier> "*"? ( ReGroup "*"? )?
FAQs
tidy file upload plugin
The npm package tidy-path-tree receives a total of 1 weekly downloads. As such, tidy-path-tree popularity was classified as not popular.
We found that tidy-path-tree 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.