npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@devtar/ephraim-slider

v1.0.0

Published

This is a sleek and fully customizable React Native slider designed for smooth and intuitive user interaction. It features a modern aesthetic with a minimalistic design, soft animations, and responsive touch gestures. The slider includes a circular or rec

Readme

Ephraim Slider 🎚️

Ephraim Slider is a sleek, customizable, and smooth React Native slider designed for seamless user interaction. It supports gesture-based control, dynamic progress tracking, and a modern UI that enhances any mobile app experience.

✨ Features ✅ Fully customizable (colors, size, animations) ✅ Supports React Native Reanimated for smooth interactions ✅ Gesture-based control using react-native-gesture-handler ✅ Lightweight & high performance ✅ Works with Expo & React Native CLI ✅ Compatible with iOS & Android

📸 Screenshots Light Mode Dark Mode

🚀 Installation Install the package via npm or yarn:

sh Copy Edit npm install @devtar/ephraim-slider --save

or

yarn add @devtar/ephraim-slider
Also, install required peer dependencies:

sh Copy Edit npm install react-native-gesture-handler react-native-reanimated react-native-svg
For Expo projects, ensure you have @expo/vector-icons installed:

sh Copy Edit npm install @expo/vector-icons
🔧 Usage Basic Example jsx Copy Edit import EphraimSlider from '@devtar/ephraim-slider';
import React from 'react';
import { View } from 'react-native';

const App = () => {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<EphraimSlider
min={0}
max={100}
step={1}
value={50}
onChange={(val) => console.log(val)}
/>

);
};

export default App;
🎨 Customization Ephraim Slider is highly customizable with props:

Prop Type Default Description min number 0 Minimum value of the slider max number 100 Maximum value of the slider step number 1 Step value for increments value number 0 Initial slider value onChange function () => {} Callback for value change trackColor string #ccc Color of the track thumbColor string #000 Color of the thumb 📌 Requirements React Native 0.68+

Expo SDK 49+ (for Expo users)

Peer Dependencies:

react-native-reanimated

react-native-gesture-handler

react-native-svg

🛠️ Development & Contribution Want to improve Ephraim Slider? Feel free to fork, contribute, or report issues!

Clone the repo:

sh Copy Edit git clone https://github.com/Ephraim5/ephraim-slider.git
Install dependencies:

sh Copy Edit cd ephraim-slider
npm install
Run the example app (optional):

sh Copy Edit cd example && npm start
Make changes and create a Pull Request 🚀

📜 License This project is licensed under the Creative Commons Attribution-NonCommercial (CC BY-NC 4.0) License. This means:

You CAN use and modify it for personal & non-commercial projects.

You CANNOT sell it or use it in commercial products.

You must give credit to the original author.

For more details, check the license file.

💬 Support & Contact For questions, issues, or feature requests, open an issue or contact me at [your email/contact info].

🚀 Made with ❤️ by Ephraim Senior Dev