
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
stringify-tree
Advanced tools
Convert a tree structure to an ASCII tree, in approximately the style of npm ls
This is in TypeScript, which helps since you pass it some functions.
npm install stringify-tree
import { stringifyTree } from "stringify-tree";
const tree = {
name: "Grandmarti", children: [
{
name: "Cyndi", children: [
{
name: "Jess", children: [
{ name: "Evelyn", children: [] },
{ name: "Linda", children: [] },
],
},
],
},
{ name: "Celia", children: [] },
],
};
console.log(stringifyTree(tree, t => t.name, t => t.children));
┬ Grandmarti
├─┬ Cyndi
│ └─┬ Jess
│ ├── Evelyn
│ └── Linda
└── Celia
import { stringifyTree } from "stringify-tree";
function treeNodeName(tn: TreeNode) {
const endOffset = tn.$value ? ", " + (tn.$offset + tn.$value.length) : "";
return `[${tn.$offset}${endOffset}] ${tn.$name}`;
}
function treeNodeChildren(tn: TreeNode): TreeNode[] {
return tn.$children || [];
}
// parser stuff from Atomist. trust me, it makes a TreeNode with fields like the above
const ast = await Java9FileParser.toAst(p.findFileSync(path));
console.log(stringifyTree<TreeNode>(ast, treeNodeName, treeNodeChildren));
FAQs
Turn a tree structure into an ascii tree
The npm package stringify-tree receives a total of 115 weekly downloads. As such, stringify-tree popularity was classified as not popular.
We found that stringify-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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.