Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@12joan/preact-hint
Advanced tools
Preact-Hint is a tiny component library used for displaying tooltips. Try out the demo!
$ yarn add preact-hint
import Hint from 'preact-hint';
import 'preact-hint/dist/index.css';
export default function App() {
return (
<Hint>
<button data-hint="Hello World!">Hover over me!</button>
</Hint>
);
}
type: string
default: data-hint
Allows you to customize which attribute contains hint data on the element.
<Hint attribute="data-foo">
<button data-foo="Hello World!">Hover over me!</button>
</Hint>
type: (content: string) => VNode
default: undefined
Allows you to customize the content within the tooltip. See the following example:
<Hint
template={(content) => {
const stringPieces = content.split(',');
return (
<Fragment>
<strong>{stringPieces[0]} Contributions</strong> on {stringPieces[1]}
</Fragment>
);
}}
>
<button data-hint={['0', '2019-09-14']}>Hover over me!</button>
</Hint>
MIT © Ryan Christian
FAQs
Tooltip Component for Preact
The npm package @12joan/preact-hint receives a total of 5 weekly downloads. As such, @12joan/preact-hint popularity was classified as not popular.
We found that @12joan/preact-hint 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.