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.
product-guide
Advanced tools
Repository includes React plugin
import ProductGuide, {VerticalPosition, HorizontalPosition} from "product-guide"; // there're also type exports
<ProductGuide
isOpen={isOpen}
onClose={() => setIsOpen(false)}
verticalPosition={VerticalPosition.Center}
horizontalPosition={HorizontalPosition.Right}
steps={[
{
selector: "#item1",
content: () => <span>test content</span>,
},
{
title: "Very long texttttttttttttttttttttttttttttttttttttttttttttttt",
selector: ".profile-text",
content: "This one is used for example",
},
{
title: "Yeah, that's the step title",
selector: ".profile-picture",
content: "This is your profile picture",
action: ({stepIndex}) => {
// here you can do redirect to another page
}
}
]}
/>
type Props = {
palette?: string, // main color theme for the widget
steps: AppGuideStep[],
isOpen: boolean,
closeOnMaskClick?: boolean, // if true, the user can close the widget by clicking on the black mask
onClose: () => void, // callback for clicking on the X (close) button
verticalPosition?: VerticalPosition, // prefered vertical position (won't be used if there's no enough space)
horizontalPosition?: HorizontalPosition, // prefered horizontal position (won't be used if there's no enough space)
activeStepIndex?: number
setActiveStepIndex?: (stepIndex: number) => void
}
interface AppGuideStep {
title?: any,
selector?: string, // css selector like "#some-id" or ".some-class"
content: any,
action?: (args: AppGuideStepActionArgs) => void
}
interface AppGuideStepActionArgs {
stepIndex: number
}
FAQs
Unknown package
The npm package product-guide receives a total of 0 weekly downloads. As such, product-guide popularity was classified as not popular.
We found that product-guide 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.