
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
remark-code-title-polyfill
Advanced tools
Remark plugin to add a title to code blocks.
Inspired by:
Astro | Next.js |
---|---|
| |
npm install remark-code-title
Given this markdown file example.md
:
# Example
```js title="example.js"
console.log("Hello World");
```
And this script, example.js
, using remark-code-title
:
import codeTitle from "remark-code-title";
import html from "remark-html";
import { read } from "to-vfile";
import { remark } from "remark";
const processor = remark().use(codeTitle).use(html, { sanitize: false });
const markdown = await read("example.md");
const result = await processor.process(markdown);
Running node example.js
yields:
<h1>Example</h1>
<div data-remark-code-title data-language="js">example.js</div>
<pre>
<code>console.log("Hello World");</code>
</pre>
FAQs
remark plugin to add titles to code blocks
The npm package remark-code-title-polyfill receives a total of 15 weekly downloads. As such, remark-code-title-polyfill popularity was classified as not popular.
We found that remark-code-title-polyfill 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.