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

@provanshh/pastelee

v1.0.5

Published

One-click installer for PasteLee desktop app. Pairs with Telegram to copy messages to your clipboard.

Downloads

813

Readme

Telegram Clipboard Desktop App

A simple Windows-focused Electron app that pairs with a Telegram bot. Any text or image you send to the bot is copied directly to your laptop clipboard so you can paste immediately.

Download & Install

Published on npm — The easiest way to install PasteLee:

npx @provanshh/pastelee@latest

This will:

  1. Show a PasteLee banner and ask whether you want the always-running app or CLI testing mode
  2. Ask for your Telegram user ID, matching the desktop app pairing step
  3. Download the latest Windows installer if you choose app mode
  4. Open it automatically so you can step through the normal install wizard

No Node.js required after installation—the app runs standalone.

Visit the npm package page: https://www.npmjs.com/package/@provanshh/pastelee

What you get

  • Telegram bot that accepts text/images
  • Electron desktop app that writes to the Windows clipboard

Prerequisites

  • Node.js 18+
  • A Telegram Bot Token from @BotFather

Quick start (local)

Start the desktop app (all-in-one)

The Electron app runs the Telegram bot in-process. You don't need to run any separate server or bot process.

Before launching, set your bot token in electron/bot_config.json or via the BOT_TOKEN environment variable.

cd d:\antigravity-projects\activateai\electron
npm install
npm start

In the app, ask a user to send /start to your bot. The user will receive their Telegram id in the chat. Paste that id in "Target Telegram User ID" and click "Pair". Messages from that user will be copied to your clipboard.

How to test

  1. Open the Electron app.
  2. Confirm the bot token is set in electron/bot_config.json or BOT_TOKEN.
  3. Open Telegram and send /start to your bot.
  4. Copy the Telegram user id the bot replies with.
  5. Paste that id into Target Telegram User ID and click Pair.
  6. Send a normal text message to the bot from that Telegram account.
  7. Paste in Notepad to confirm the text was copied.
  8. Send an image to the bot and paste it into an app that accepts images, such as Paint or Word.

Publish a Windows build

To create a distributable installer locally:

cd d:\antigravity-projects\activateai\electron
npm run dist

The installer will be written to electron/dist/.

If Windows blocks Electron Builder with a symbolic-link privilege error, publish through GitHub Actions instead.

GitHub Actions build & publish

The installer build and release runs from .github/workflows/build-windows.yml.

To publish a new version:

cd d:\antigravity-projects\activateai
git add .
git commit -m "release: v1.0.1"
git tag v1.0.1
git push origin main
git push origin v1.0.1

GitHub Actions will automatically build and publish the installer to a Release.

For landing pages

Recommended method — Users can install with one command:

npx @provanshh/pastelee@latest

The launcher will show a big PasteLee banner, ask for your Telegram user ID, and let you choose between always-running app mode or CLI testing mode.

Alternative — Direct download link (always points to latest):

<a href="https://github.com/provanshh/pastelee/releases/latest/download/PasteLee-Setup-x64.exe">
  Download Windows Installer
</a>

Notes

  • The relay server is in-memory; restarting it will require re-pairing.
  • The Electron app writes images directly to the clipboard.
  • If you want to ship to other users, set the bot token before building the installer.
  • The published app does not require users to run npm start; they install and launch the packaged .exe.