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 🙏

© 2026 – Pkg Stats / Ryan Hefner

automove

v1.0.0

Published

Keeps your screen awake by nudging the cursor every few seconds. Run it, Ctrl+C when done.

Downloads

93

Readme

automove

You know that thing where you step away for a few minutes and come back to a locked screen? This fixes that.

automove is a dead simple CLI tool that nudges your cursor a few pixels every 5 seconds, keeping your screen awake and your session alive. Run it in a terminal, do whatever you need to do, and hit Ctrl+C when you're done.


Install

npm install -g automove

That's it. No config files, no setup, no nonsense.


Usage

Just run:

automove

You'll see:

automove running — cursor nudges every 5s, 5px radius.
Press Ctrl+C to stop.

Leave it running in any terminal window. When you're done, hit Ctrl+C and it exits cleanly.


Options

automove --interval 10        # nudge every 10 seconds instead of 5
automove --radius 2           # smaller movement (2px instead of 5px)
automove -i 10 -r 2           # combine both
automove --help               # show all options

| Flag | Short | Default | What it does | |------|-------|---------|--------------| | --interval | -i | 5 | Seconds between each nudge | | --radius | -r | 5 | How many pixels to move |


How it works

Every interval seconds, the script grabs your current cursor position and moves it by a tiny amount in a 4-step circular pattern — so it ends up roughly back where it started. You won't even notice it unless you're staring at your cursor waiting for it to move.

It doesn't click anything. It doesn't type anything. It just moves the mouse a little.


Stopping it

Hit Ctrl+C in the terminal where it's running. It'll print automove stopped. and exit.


Requirements

  • Node.js 14+
  • Works on macOS, Windows, and Linux

Note for macOS users: You may need to grant your terminal app accessibility permissions the first time you run it. macOS will prompt you — just allow it and re-run the command.


License

MIT