
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.
@19h47/slider
Advanced tools
Multi-thumb range slider controller (APG-style). One instance controls both thumbs inside a rail and prevents crossing ((min \le max)).
Based on the W3C APG multi-thumb slider pattern: W3C APG – Horizontal Multi-Thumb Slider Example
npm i @19h47/slider
The controller expects a rail element that contains exactly 2 thumbs with role="slider".
The library is HTML-first for ARIA attributes (it does not set aria-orientation at runtime),
but its internal orientation is determined by the JS option.
Important: thumbs order matters (matches APG):
Example:
<div class="rail">
<button
role="slider"
tabindex="0"
class="max"
aria-label="Maximum value"
aria-valuemin="0"
aria-valuemax="35"
aria-valuenow="35"
aria-valuetext="35"
aria-orientation="horizontal"
></button>
<button
role="slider"
tabindex="0"
class="min"
aria-label="Minimum value"
aria-valuemin="0"
aria-valuemax="35"
aria-valuenow="0"
aria-valuetext="0"
aria-orientation="horizontal"
></button>
</div>
The controller keeps these attributes updated:
aria-valuenow / aria-valuetext on both thumbsaria-valuemin on the max thumb (set to current min)aria-valuemax on the min thumb (set to current max)
import Slider from '@19h47/slider'
const rail = document.querySelector('.rail')
const slider = new Slider(rail, { orientation: 'horizontal', width: 24, height: 24 })
slider.init();
If you attach sliders dynamically, call destroy() to remove global listeners:
slider.destroy()
type Orientation = 'horizontal' | 'vertical'
type Options = {
orientation: Orientation
width: number
height: number
direction: 'auto' | 'ltr' | 'rtl'
step: number
page: number
}
Defaults:
orientation: 'horizontal'width: 24height: 24direction: 'auto' (reads getComputedStyle(rail).direction)step: 1page: 10Notes:
direction: 'rtl' or dir="rtl"), the horizontal slider reverses the value axis (higher values to the left) and swaps Left/Right arrow behavior.The controller dispatches a DOM event on the rail:
Slider.changetype Detail = {
min: number
max: number
active: 'min' | 'max'
}
Example:
rail.addEventListener('Slider.change', (event) => {
const { min, max, active } = event.detail
console.log({ min, max, active })
})
If you need to draw UI based on geometry (range bar, tooltips), you can use:
slider.rect(): returns a DOMRect snapshot for the rail| Key | Function |
|---|---|
| Right Arrow | Increases slider value one step. |
| Up Arrow | Increases slider value one step. |
| Left Arrow | Decreases slider value one step. |
| Down Arrow | Decreases slider value one step. |
| Page Up | Increases slider value by page. |
| Page Down | Decreases slider value by page. |
| Home | Sets slider to its minimum value. |
| End | Sets slider to its maximum value. |
This package positions thumbs via transform: translate3d(...).
It uses a “thumb origin” coordinate system (top-left of the thumb) and:
railLength - 2 * thumbSize+height+widthSo your CSS should set a stable origin for thumbs (e.g. top: 0 for vertical, left: 0 for horizontal) and let JS handle positioning.
FAQs
Slider
We found that @19h47/slider demonstrated a healthy version release cadence and project activity because the last version was released less than 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.