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 🙏

© 2025 – Pkg Stats / Ryan Hefner

rdsh-expense-tracker

v1.0.0

Published

A simple command-line expense tracker

Readme

Expense Tracker CLI

A simple command-line expense tracker written in Node.js that stores expenses in a CSV file (data.csv). It allows you to add, list, summarize, and delete expenses directly from the terminal.


rdsh project url

https://roadmap.sh/projects/expense-tracker


🚀 Features

  • Add new expense with description and amount.
  • List all expenses in a table-like format.
  • View summary of total expenses.
  • View monthly summary for a given month.
  • Delete expense by ID.
  • Data is stored in a lightweight CSV file (data.csv).

📦 Installation

  1. Clone this repository or copy the script.

  2. Make sure you have Node.js installed.

  3. Save the script in a file, e.g. index.js.

  4. Give it execute permission (Linux/macOS):

    chmod +x index.js
  5. Run commands using:

    ./index.js <command>

📖 Usage

1. Add Expense

./index.js add --description "Coffee" --amount 3.5

✅ Adds a new expense with auto-generated ID and current date.


2. List All Expenses

./index.js list

✅ Displays all expenses in a readable format.


3. View Summary

./index.js summary

✅ Shows total amount spent.


4. View Monthly Summary

./index.js summary --month 10

✅ Shows total expenses for October (10).


5. Delete an Expense

./index.js delete --id 2

✅ Deletes the expense with ID 2.


📂 Data Format

Expenses are stored in data.csv with the following structure:

id,date,description,amount
1,10/3/2025,Coffee,3.5
2,10/3/2025,Books,12.99
3,10/3/2025,Groceries,45.67

🛠️ Example Session

./index.js add --description "Movie" --amount 12
./index.js add --description "Snacks" --amount 5.5
./index.js list
./index.js summary
./index.js summary --month 10
./index.js delete --id 2

📌 Notes

  • CSV file is created automatically if not found.
  • Dates are stored in MM/DD/YYYY format.
  • IDs are incremental and based on the line count in data.csv.

📜 License

MIT License – free to use and modify.