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

aryanahlawat

v1.1.0

Published

Aryan Ahlawat's portfolio as an interactive terminal app. npx aryanahlawat

Downloads

656

Readme

aryanahlawat

Aryan Ahlawat's portfolio, as an interactive terminal app.

npx aryanahlawat

No install, no dependencies, ~20 KB. Works anywhere Node 18+ runs — Windows Terminal, PowerShell, macOS, Linux, WSL.

↑ ↓       move between rows and links
⏎ / space expand the focused row — or open the focused link in your browser
← → tab   change section
1 – 4     jump straight to a section
q         quit

Expanding a project puts its repo / demo / devpost links directly under it, in the same list the arrows are already walking, so ⏎ twice gets you from a project to its source. The Contact section is links the whole way down; email opens a mailto:. Nothing is clicked and nothing is copied out — the footer tells you what ⏎ will do to whatever is selected.

The window is the app's real layout constraint, so it reflows as you resize it, and the alternate screen means quitting leaves your scrollback exactly as it was.

Don't want to install anything?

The same content is served as plain text over HTTP:

curl -L aryanahlawat.dev
curl -L aryanahlawat.dev/projects
curl -L 'aryanahlawat.dev/?plain'      # no colour, safe to pipe
curl -L 'aryanahlawat.dev/?w=120'      # set the width

-L matters: a bare hostname means http://, which is force-upgraded to https with a 308, and curl won't follow that on its own.

On Windows PowerShell, use irm https://aryanahlawat.dev. Bare curl there is an alias for Invoke-WebRequest, which returns an object rather than the page — and PowerShell 5.1 refuses to follow a 308, so the scheme has to be spelled out.

How it stays current

This package contains no content. Every run it fetches the words and the colour palette from aryanahlawat.dev/api/content, which is generated from the same TypeScript modules that render the website. Update the site and this CLI updates with it — no republish, and no version of it can quietly go stale.

That also means it needs a network connection. Piped or redirected (npx aryanahlawat | cat) it skips the interface and prints everything at once, fully expanded.

Source

github.com/cursingparrot4/arna-site — the CLI lives in cli/.

MIT.