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

crypto-sentinel

v1.0.0

Published

AI-powered crypto news monitor — watches for risk signals and alerts via email and Telegram

Readme

crypto-sentinel

Crypto Sentinel Deploy Docs TypeScript Gemini License: MIT

AI-powered crypto news monitor that watches for risk signals about your chosen exchanges and coins. Runs on GitHub Actions 4x/day, analyses headlines via Gemini, and emails you only when meaningful risk is detected.

Documentation

Why

"Not your keys, not your coins" — but sometimes you have assets on exchanges anyway. Instead of reading crypto news every day hoping to catch early warning signs, this tool does it for you. There are plenty of open-source price alert projects, but none that use AI to analyse news sentiment and risk — insolvency rumours, hacks, regulatory actions — and alert you a few times a day so you can act fast to protect your assets.

Email Alert Preview

Setup

1. Clone and install

cd ~/Projects
git clone <your-repo-url> crypto-sentinel
cd crypto-sentinel
npm install

2. Get your API keys

| Key | Where | Cost | |-----|-------|------| | GEMINI_API_KEY | aistudio.google.com | Free (1500 req/day) | | RESEND_API_KEY | resend.com | Free (3000 emails/month) |

3. Configure locally

cp .env.example .env
# Fill in your keys

4. Test locally

npm run dev

5. Deploy to GitHub Actions

Add these as Repository Secrets (Settings → Secrets → Actions):

  • GEMINI_API_KEY
  • RESEND_API_KEY
  • TELEGRAM_BOT_TOKEN (optional) — from @BotFather
  • TELEGRAM_CHAT_ID (optional) — from @userinfobot

Add these as Repository Variables (Settings → Variables → Actions):

  • RECIPIENT_EMAIL — where to receive alerts
  • WATCH_KEYWORDS — comma-separated keywords to monitor, e.g. binance,bybit,youhodler

Push to GitHub — the workflow runs automatically on schedule.

Alert thresholds

Emails are sent for medium, high, and critical risk levels only.
low and none are logged but silent.

| Level | Example triggers | |-------|-----------------| | 🚨 critical | Insolvency, confirmed hack, withdrawal freeze | | 🔴 high | Security breach, regulatory enforcement | | 🟡 medium | Regulatory warning, leadership changes | | 🟢 low | Minor negative press, market coverage | | ⚪ none | Neutral / positive news |

Manual trigger

Go to Actions → Crypto Sentinel → Run workflow in GitHub to trigger a run immediately.