Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
gatsby-remark-graph-towavephone
Advanced tools
Make nice graphs in your markdown files in gatsbyjs, using mermaid
Make nice graphs in your markdown files in gatsbyjs, using mermaid.
Here is a basic demo, which also uses my starter template.
npm install --save gatsby-transformer-remark gatsby-remark-graph
// In your gatsby-config.js
plugins: [
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: 'gatsby-remark-graph',
options: {
// this is the language in your code-block that triggers mermaid parsing
language: 'mermaid', // default
theme: 'default' // could also be dark, forest, or neutral
}
}
]
}
}
]
Make sure you put it before other plugins (especially those that work with code
blocks, like prism.)
```mermaid
graph LR
A[Square Rect] -- Link text --> B((Circle))
A --> C(Round Rect)
B --> D{Rhombus}
C --> D
```
Will give you a graph that looks like this:
FAQs
Make nice graphs in your markdown files in gatsbyjs, using mermaid
The npm package gatsby-remark-graph-towavephone receives a total of 0 weekly downloads. As such, gatsby-remark-graph-towavephone popularity was classified as not popular.
We found that gatsby-remark-graph-towavephone 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.