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

@rayan-roshan21/ticker_cli

v0.3.0

Published

Building a cli to grab information from Yahoo finance and display them on your terminal.

Readme

ticker_cli

A live portfolio ticker for your terminal. Shows current prices, position values, and daily change for the holdings you configure — refreshing every 30 seconds.

Built with Ink.

  SYMBOL         PRICE       VALUE       CHG    SHARES
  VFV.TO        186.29     7824.18    +0.85%        42
  XIT.TO         73.31      806.41    -2.45%        11
  CHPS.TO        80.23     2005.75    +0.51%        25

  TOTAL                   10636.34

  Updated 7:12:01 PM · Ctrl+C to quit

Install

Run it without installing:

npx ticker_cli

Or install globally:

npm install -g ticker_cli

Requires Node.js 22 or later.

Setup

ticker reads your holdings from ~/.tickerrc. Create it before first run:

[
  { "symbol": "VFV.TO", "shares": 42 },
  { "symbol": "XIT.TO", "shares": 11 },
  { "symbol": "AAPL", "shares": 5 }
]

Each entry needs a symbol string and a shares number. That's it.

The file lives in your home directory, not in any project, so your position sizes never end up in a git repo.

Symbol format

Symbols follow Yahoo Finance conventions:

| Exchange | Suffix | Example | | --- | --- | --- | | NYSE / NASDAQ | none | AAPL | | Toronto (TSX) | .TO | VFV.TO | | TSX Venture | .V | ABC.V | | London | .L | VOD.L |

If a symbol returns no data, check it on finance.yahoo.com first — whatever works there works here.

Usage

ticker

Prices refresh every 30 seconds. Press Ctrl+C to quit.

Daily change is green when positive, red when negative. TOTAL is the sum of all position values.

Notes

Market hours. Outside trading hours you'll see the last close with a 0% change. That's expected, not a bug — watch the "Updated" timestamp to confirm it's still refreshing.

Data source. Quotes come from Yahoo Finance via yahoo-finance2. Yahoo does not offer an official public API and makes no guarantees about availability or consistency, so this can break without warning. Fine for a personal dashboard; don't build anything important on it.

Delays. Quotes may be delayed depending on the exchange. Don't trade off these numbers.

Disclaimer

This is a display tool. It is not financial advice, and the data may be inaccurate, delayed, or unavailable. Verify anything that matters with your broker.

License

MIT