
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
solid-highlight
Advanced tools
Solid component for syntax highlighting, based on react-highlight and highlightjs' vue plugin
npm i solid-highlight
# or
yarn add solid-highlight
# or
pnpm add solid-highlight
import Highlight from "solid-highlight";
Choose the theme for syntax highlighting and add corresponding styles of highlight.js, either as a stylesheet or by importing in your index.tsx file
<link rel="stylesheet" href="/path/to/styles/theme-name.css">
import "highlight.js/styles/stackoverflow-light.css";
The styles will most likely be in node_modules/highlight.js/styles folder.
| Property | Type | Default | Description |
|---|---|---|---|
| class | string | Custom css classes to be included | |
| language | string (optional) | '' | Language of code to be highlighted (will be detected automatically by default) |
| autoDetect | boolean (optional) | true | Whether to automatically detect the language of code to be highlighted |
| ignoreIllegals | boolean (optional) | true | Whether to ignore illegal characters in the code to be highlighted |
Code snippet that requires syntax highlighting should be passed as children to Highlight component in string format.
<Highlight autoDetect={true}> {"function foo() { return 'bar' }"} </Highlight>
<Highlight autoDetect={false} language={"js"}>
{"function foo() { return 'bar' }"}
</Highlight>
FAQs
Solid component for syntax highlighting, based on react-highlight and highlightjs' vue plugin
The npm package solid-highlight receives a total of 1,262 weekly downloads. As such, solid-highlight popularity was classified as popular.
We found that solid-highlight 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.