
Company News
Andrew Becherer Joins Socket as Chief Information Security Officer
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.
@reelkit/core
Advanced tools
Framework-agnostic, virtualized, single-item slider engine with zero dependencies
The engine behind ReelKit — handles slider logic, gesture recognition, and transitions without depending on any UI framework. Ships its own signal-based reactive system so you don't need RxJS or similar.
npm install @reelkit/core
import { createSliderController } from '@reelkit/core';
const slider = createSliderController({
count: 100,
direction: 'vertical',
});
// Navigate
slider.next();
slider.prev();
slider.goTo(5);
// Read state via signals
console.log(slider.currentIndex.value); // 5
// Subscribe to changes
slider.currentIndex.subscribe((index) => {
console.log('Slide changed:', index);
});
createSliderController, createGestureController, createKeyboardController, createWheelControllerSignal, ComputedSignal, and reaction primitives for reactive stateAPI reference and guides at reelkit.dev.
If ReelKit saved you some time, a star on GitHub would mean a lot — it's a small thing, but it really helps the project get noticed.
FAQs
Framework-agnostic, virtualized, single-item slider engine with zero dependencies
We found that @reelkit/core 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.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.

Company News
Replit is integrating Socket Firewall into its AI-powered development experience to help protect builders from malicious open source packages.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.