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.
dotparser-normalized
Advanced tools
A wrapper of dotparser to parse GraphViz dot file and collect nodes / edges.
A wrapper of dotparser to parse GraphViz dot file and collect nodes / edges.
This library parses dot with dotparser, and collect nodes and edges in usable structure.
Originally this was made to use in my project reagram. And also may be useful to get structured data from dot to render in some libraries like React Flow.
npm install dotparser-normalized
import { parse } from "dotparser-normalized";
const data = parse(`
digraph G {
subgraph cluster_0 {
style=filled;
color=lightgrey;
node [style=filled,color=white];
a0 -> a1 -> a2 -> a3;
label = "process #1";
}
subgraph cluster_1 {
node [style=filled];
b0 -> b1 -> b2 -> b3;
label = "process #2";
color=blue
}
start -> a0;
start -> b0;
a1 -> b3;
b2 -> a3;
a3 -> a0;
a3 -> end;
b3 -> end;
start [shape=Mdiamond];
end [shape=Msquare];
}
`);
console.log(data);
FAQs
A wrapper of dotparser to parse GraphViz dot file and collect nodes / edges.
The npm package dotparser-normalized receives a total of 11 weekly downloads. As such, dotparser-normalized popularity was classified as not popular.
We found that dotparser-normalized 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.