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.
uniorg-slug
Advanced tools
uniorg-slug
uniorg plugin to add anchors headings using GitHub's algorithm. Similar to rehype-slug but respects org-mode's CUSTOM_ID
(as org-html-export
).
npm install uniorg-slug
import unified from 'unified';
import uniorgParse from 'uniorg-parse';
import { uniorgSlug } from 'uniorg-slug';
import uniorg2rehype from 'uniorg-rehype';
import html from 'rehype-stringify';
const node = unified()
.use(uniorgParse)
.use(uniorgSlug)
.use(uniorg2rehype)
.use(html)
.processSync(`
* headline
** nested headline
:PROPERTIES:
:CUSTOM_ID: blah
:END:
** headline
:PROPERTIES:
:ID: my-id
:END:
~id~ property is ignored.
`);
console.log(node.toString());
will output:
<h1 id="headline">headline</h1>
<h2 id="blah">nested headline</h2>
<h2 id="headline-1">headline</h2>
<p><code class="inline-code">id</code> property is ignored.</p>
FAQs
uniorg plugin to add `id` attributes to headlines
The npm package uniorg-slug receives a total of 86 weekly downloads. As such, uniorg-slug popularity was classified as not popular.
We found that uniorg-slug demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.