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

smart-idle

v1.0.0

Published

Lightweight browser library to detect user inactivity with event dispatching

Downloads

10

Readme

💤 smart-idle

smart-idle is a lightweight, customizable JavaScript library that detects user inactivity (idle state) in the browser. It helps you implement features like auto-logout, UI hiding, session timeout, or analytics triggers with ease.

  • 🔧 Framework-agnostic (works with React, Vue, Angular, Vanilla JS, etc.)
  • 🎛️ Fully customizable idle timeout and activity events
  • 💡 Built-in event listeners and manual control methods
  • 🧪 Minimal dependencies and small size

📦 Installation

Using npm

npm install smart-idle

Using CDN (for browser use)

<script type="module">
  import { SmartIdle } from 'https://cdn.jsdelivr.net/npm/smart-idle/+esm';

  const idle = new SmartIdle({ timeout: 10000 });
  idle.start();
</script>

🚀 Getting Started

Basic Example

import { SmartIdle } from 'smart-idle';

const idle = new SmartIdle({
  timeout: 60000, // 1 minute
  onIdle: () => console.log('User is idle'),
  onActive: () => console.log('User is active again'),
});

idle.start();

⚙️ Configuration Options

When you create a SmartIdle instance, you can pass these options:

| Option | Type | Default | Description | |------------|------------|-----------------------------|------------------------------------------| | timeout | number | 60000 (ms) | Time (in milliseconds) before becoming idle | | onIdle | Function | () => {} | Callback fired when user becomes idle | | onActive | Function | () => {} | Callback fired when user returns | | events | string[] | See below | DOM events to listen to |

Default events listened to:

[
  'mousemove',
  'scroll',
  'keydown',
  'touchstart',
  'visibilitychange'
]

You can override this like so:

const idle = new SmartIdle({
  timeout: 15000,
  events: ['click', 'keydown', 'pointermove'], // custom events
});

📚 API Reference

| Method | Description | |------------------|-------------------------------------------------| | start() | Start tracking user activity | | stop() | Stop tracking and clear timers | | pause() | Temporarily pause idle tracking | | resume() | Resume tracking after pause | | reset() | Reset the internal idle timer | | destroy() | Remove all listeners and stop everything | | triggerIdle() | Manually set the state to idle immediately |


💡 Use Cases

  • 🔐 Auto logout users after inactivity
  • 🛑 Pause video/audio when the user is idle
  • 🧼 Dim or hide UI after a period of no input
  • 📊 Trigger analytics or session tracking
  • 📉 Conserve resources in low-interaction tabs

🔌 Framework Examples

React

useEffect(() => {
  const idle = new SmartIdle({
    timeout: 10000,
    onIdle: () => console.log('Idle'),
    onActive: () => console.log('Active'),
  });

  idle.start();
  return () => idle.destroy();
}, []);

Vue (Composition API)

onMounted(() => {
  const idle = new SmartIdle({
    timeout: 10000,
    onIdle: () => console.log("Idle"),
    onActive: () => console.log("Back"),
  });
  idle.start();
});

onUnmounted(() => idle.destroy());

🖥️ CLI Support (Optional)

This package comes with a CLI entry point for developer information.

Install globally:

npm install -g smart-idle

Use:

smart-idle --help

⚠️ Note: The CLI is informational only; this is not a Node-based runtime tool.


🌐 Browser Compatibility

| Browser | Supported | |---------------|-----------| | Chrome | ✅ | | Firefox | ✅ | | Safari | ✅ | | Edge | ✅ | | Internet Explorer | ❌ |

This library is not designed for Node.js usage.


📝 License

MIT License © 2025 ward-00