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

cashgrab

v0.0.1

Published

`cashgrab` is a local CLI that scrapes banking websites via Chrome DevTools Protocol (CDP). It launches a dedicated Chrome instance, connects over remote debugging, and automates authenticated sessions to pull account data. It never sees your credentials

Downloads

245

Readme

cashgrab

cashgrab is a local CLI that scrapes banking websites via Chrome DevTools Protocol (CDP). It launches a dedicated Chrome instance, connects over remote debugging, and automates authenticated sessions to pull account data. It never sees your credentials - these stay within the Browser.

Supported banks:

  • Bankwest -- account balances and transaction export (QIF)
  • St.George -- account balances and transaction export (CSV)

The repo also includes shell scripts for cleaning exported transaction files before import.

Install

npm install -g cashgrab

Browser

All scraping commands require Chrome running with remote debugging on port 9222. Use --profile to copy your existing Chrome profile (cookies, logins) into the dedicated instance first.

cashgrab browser
cashgrab browser --profile

The browser launches with its own profile directory (~/.cache/browser-tools). If Chrome is already running on :9222, the command exits immediately.

Bankwest

Requires a logged-in Bankwest session.

Account Balances

cashgrab bankwest balances

Transaction Export

Exports transactions as a QIF file. The account name is a case-insensitive substring match against the Bankwest dropdown -- it must match exactly one account, otherwise available options are listed.

cashgrab bankwest transactions "offset joint" -r L30Days
cashgrab bankwest transactions "home loan john" -r L90Days -o ~/Downloads
cashgrab bankwest transactions "offset joint" --from 01/01/2026 --to 28/03/2026
cashgrab bankwest transactions "offset joint" --from 2026-01-01 --to 2026-03-28

St.George

Requires a logged-in St.George session.

Account Balances

cashgrab st-george balances

Transaction Export

Exports transactions as a CSV file. The account name is a case-insensitive substring match against the portfolio accounts.

cashgrab st-george transactions "000 111 222" -r L7Days
cashgrab st-george transactions "residential loan s000 111 222 333" -r L30Days -o ~/Downloads
cashgrab st-george transactions "complete freedom offset 000 111 222" --from 01/03/2026 --to 29/03/2026
cashgrab st-george transactions "complete freedom offset 000 111 222" --from 2026-03-01 --to 2026-03-29

Cleaning