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

clipboard-history-manager

v1.0.2

Published

An easy-to-use clipboard history manager that automatically tracks and saves clipboard content. Includes tools to view, clear, and manage your clipboard history effectively.

Downloads

10

Readme

Clipboard History Manager

Clipboard History Manager is like your personal backup hero—saving your copied text so you never lose it again! Picture this: you’re working on something important in Word or Notepad, copying and pasting like a pro, then—BAM—accidentally close the document without saving. Nightmare, right? Fear not! With Clipboard History Manager, everything you copy is automatically saved. No more panic, no more "Ctrl+Z" desperation—just copy, and it’s there, ready for you to grab. Your clipboard’s new best friend!

A simple command-line tool that tracks, saves, and manages your clipboard history. It helps you keep a record of copied content and provides features to view, clear, and automatically monitor clipboard activity.

Features

  • Automatically tracks clipboard content.
  • Saves clipboard history to a JSON file for persistence.
  • Displays the clipboard history in a clear, formatted manner.
  • Allows you to clear the clipboard history.
  • Continuously monitors the clipboard for new content.

Installation

To install the package globally via npm:

npm install -g clipboard-history-manager

Usage

Once installed, you can run the tool using the command:

cliphist

Menu Options

  • 1. View clipboard history: Displays the list of clipboard items saved in the history.
  • 2. Clear clipboard history: Clears the current clipboard history and updates the history file.
  • 3. Exit: Exits the application.

Example

  1. Start the application:
    cliphist
  2. Choose an option from the menu:
    Clipboard History Manager
    1. View clipboard history
    2. Clear clipboard history
    3. Exit
    Enter your choice:
  3. View or clear your clipboard history as needed.

Configuration

The clipboard history is stored in a file named clipboard_history.json in the current working directory. This file ensures that your clipboard history persists between sessions.

License

This project is licensed under the ISC License.

Dependencies

  • clipboardy: Used to interact with the clipboard.
  • Node.js: Ensure you have Node.js installed to run this application.

Notes

  • The clipboard is monitored every second, automatically saving new content only if it differs from the last recorded item. Ensure you have write permissions in the execution directory to save the clipboard history file.
  • Clearing the clipboard history removes all items; however, the last recorded item may be saved again if it remains unchanged during the next monitoring cycle.