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

hackathon-radar

v0.4.0

Published

Find active hackathons worldwide with eligibility badges — CLI + agent skill

Readme

hackathon-radar

Find active hackathons worldwide — with eligibility badges

CI npm version License: MIT



Why

| Problem | How hackathon-radar solves it | |---|---| | Manually scanning for hackathons is slow | One command searches DuckDuckGo, Devpost, and MLH automatically | | Can't tell at a glance if you're eligible | Every result is badged: 🟢 OPEN TO ALL · 🔴 GATED · 🟡 PARTIAL · ⚪ UNKNOWN | | Results go stale fast | 1-hour local cache; --no-cache to force a fresh fetch | | Hard to automate or pipe | --json emits structured output; --quiet suppresses status lines | | Global search returns irrelevant regions | --location Asia or --location India scopes the DDG query | | Too many results from unrelated fields | --department fintech or --department "climate tech" narrows the query |

Install

npm install -g hackathon-radar

Requires Node.js ≥ 18.

Usage

hackathon-radar                                        # all hackathons, enriched log
hackathon-radar --open-only                            # open-to-all only
hackathon-radar --location Asia                        # filter by region
hackathon-radar --location India --department fintech  # filter by country + field
hackathon-radar --json                                 # structured JSON output
hackathon-radar --json --quiet | jq '.[0]'             # pipe-friendly
hackathon-radar --watch 1h                             # poll every hour, show new only
hackathon-radar --no-cache                             # force fresh search
hackathon-radar --min-days 7 --limit 5                 # ≥7 days left, top 5

Flags

| Flag | Default | Description | |---|---|---| | --location <value> | — | Region (Asia, Europe, Americas, Africa, Oceania, Global) or country (India, Germany, USA, …) | | --department <value> | — | Domain keyword — any string (fintech, climate tech, robotics) | | --open-only | off | Show OPEN TO ALL results only | | --min-days <n> | 3 | Only show hackathons with ≥ n days remaining | | --limit <n> | 20 | Maximum results to show | | --json | off | Emit structured JSON array sorted OPEN → PARTIAL → GATED → UNKNOWN | | --watch <interval> | — | Poll mode: 30m, 1h — shows only newly found hackathons on each poll | | --no-cache | off | Skip the 1-hour cache and fetch fresh results | | --quiet | off | Suppress status and header lines | | --version | — | Print version and exit |

Badge meanings

| Badge | Meaning | |---|---| | 🟢 OPEN TO ALL | No eligibility restrictions found on the hackathon page | | 🔴 GATED | Hard restriction — students only, age 18+, KYC required, invite-only | | 🟡 PARTIAL | Soft preference — team size limit, recommended experience level | | ⚪ UNKNOWN | Page not fetched or no eligibility text found |

Security

  • HTTPS-only page fetches — HTTP URLs are skipped entirely, never fetched
  • No API keys — uses public DuckDuckGo search, no credentials stored or sent
  • Polite fetching — 500ms minimum delay between page requests
  • Local cache only — results stored at ~/.cache/hackathon-radar/results.json, never sent anywhere
  • Out of scope: JavaScript-rendered pages, login-gated content

Report vulnerabilities via GitHub Private Advisories.

Repo layout

bin/cli.js           Entry point — flag parsing, validation, pipeline orchestration
src/validate.js      Flag validation — location list, range checks, combo checks
src/search.js        DDG search + Devpost API + MLH sitemap fallback chain
src/filter.js        Date filtering and URL deduplication
src/enrich.js        HTTPS page fetch + cheerio extraction
src/classify.js      Eligibility classifier — OPEN / GATED / PARTIAL / UNKNOWN
src/cache.js         JSON file cache — TTL, read, write, watch diff
src/output.js        Terminal log renderer and --json emitter
SKILL.md             Agent skill descriptor

License

MIT © 2026 aks-builds