Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@reelkit/core

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package version was removed
This package version has been unpublished, mostly likely due to security reasons

@reelkit/core

Framework-agnostic, virtualized, single-item slider engine with zero dependencies

unpublished
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
138
74.68%
Maintainers
1
Weekly downloads
 
Created
Source

@reelkit/core

npm Bundle size Star on GitHub

Framework-agnostic slider engine with zero dependencies. Provides virtualized rendering, gesture recognition, keyboard/wheel controllers, and a lightweight signal-based reactive system.

Installation

npm install @reelkit/core

Quick Start

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);
});

Features

  • Virtualized — renders only 3 slides at a time, handles 10,000+ items
  • Zero dependencies — ~4.7 kB gzip
  • Controller pattern — factory functions (createSliderController, createGestureController, createKeyboardController, createWheelController)
  • Signal-based reactivity — lightweight Signal, ComputedSignal, and reaction primitives
  • Touch gestures — swipe with momentum, configurable thresholds
  • Keyboard & wheel — full navigation support with debouncing
  • Loop mode — infinite circular scrolling
  • Auto-size — optional ResizeObserver-based sizing
  • TypeScript — full type safety

Documentation

Full API reference and guides at reelkit.dev.

License

MIT

Keywords

slider

FAQs

Package last updated on 13 Mar 2026

Did you know?

Socket

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.

Install

Related posts