
Security News
152 Chrome Live Wallpaper Extensions Hid Ad Tracking and Faked Google Search Traffic
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.
@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
The npm package @reelkit/core receives a total of 95 weekly downloads. As such, @reelkit/core popularity was classified as not popular.
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.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

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.