
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
js-step-builder
Advanced tools
A lightweight, framework-agnostic step builder for JavaScript.
npm install js-step-builder
import { StepBuilder } from "js-step-builder";
const stepBuilder = new StepBuilder({
startsFrom: 1,
onStepChange: () => {
console.log("Step changed!");
},
}).init("#steps");
Check out the live demo at: https://sametweb.github.io/js-step-builder/
The demo showcases:
interface StepBuilderConfig {
startsFrom?: number; // Starting step number (default: 1)
onStepChange?: () => void; // Callback when step changes
progressBar?: string; // Progress bar selector (default: "#progress")
prevButton?: string; // Previous button selector (default: "#prev-btn")
nextButton?: string; // Next button selector (default: "#next-btn")
stepClass?: string; // Step element class (default: "step")
activeClass?: string; // Active step class (default: "active")
}
init(selector: string): StepBuilder - Initialize the step buildernext(): void - Move to next stepprev(): void - Move to previous stepjump(step: number): void - Jump to specific stepgetState(): StepState - Get current stateinterface StepState {
current: number; // Current step number
size: number; // Total number of steps
isLast: boolean; // Is current step the last step
isFirst: boolean; // Is current step the first step
hasPrev: boolean; // Can move to previous step
hasNext: boolean; // Can move to next step
progress: number; // Progress percentage (0-1)
}
MIT
FAQs
A lightweight, framework-agnostic step builder for JavaScript
We found that js-step-builder 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.