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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@linden_quan/don

v0.2.3

Published

personal financial management app

Downloads

71

Readme

Table of Contents

Tech stack

pNpm: Fast, disk space efficient package manager

Release Please: Release Please automates CHANGELOG generation, the creation of GitHub releases, and version bumps for your projects.

Husky: Auto run prettier, analyzer and linter and unit tests before commit.

Qwik: The world's fastest loading UI components library.

Vite: Frontend Tooling. It uses Rollup and esbuild internally for bundling

Vitest: Testing Framework.

Project Structure

This project is using Qwik with QwikCity. QwikCity is just an extra set of tools on top of Qwik to make it easier to build a full site, including directory-based routing, layouts, and more.

Inside your project, you'll see the following directory structure:

├── public/
│   └── ...
└── src/
    ├── components/
    │   └── ...
    └── routes/
        └── ...
  • src/routes: Provides the directory-based routing, which can include a hierarchy of layout.tsx layout files, and an index.tsx file as the page. Additionally, index.ts files are endpoints. Please see the routing docs for more info.

  • src/components: Recommended directory for components.

  • public: Any static assets, like images, can be placed in the public directory. Please see the Vite public directory for more info.

Development

Development mode uses Vite's development server. The dev command will server-side render (SSR) the output during development.

pnpm start

Note: during dev mode, Vite may request a significant number of .js files. This does not represent a Qwik production build.

Production

The production build will generate client and server modules by running both client and server build commands. The build command will use Typescript to run a type check on the source code.

pnpm build

Roadmap

  • 🚧 TODO Account Aggregation

    • Link multiple bank accounts, credit cards, loans, and investment accounts.
    • Real-time synchronization of balances and transactions.
  • 🚧 TODO Expense Tracking

    • Automatically categorize transactions (e.g., groceries, entertainment, utilities) by taking pictures of receipts.
    • Manual entry of expenses and transactions.
    • Support for splitting transactions (e.g., shared bills).
    • Tagging expenses for more personalized tracking (e.g., vacations, business).
  • 🚧 TODO Income Tracking

    • Record and categorize income (salary, freelance, dividends, etc.).
    • Monitor recurring income streams and one-time payments.
    • Integration with payroll systems and tax tracking for income insights.
  • 🚧 TODO Bill Management

    • Add and track recurring bills (rent, utilities, subscriptions, etc.).
    • Bill reminders and notifications (upcoming due dates).
    • Ability to set up autopay or mark bills as paid.
  • 🚧 TODO Investment Tracking

    • Link investment accounts and track portfolio performance.
    • Track asset allocations (stocks, bonds, mutual funds, etc.).
    • Monitor net worth based on assets and liabilities.
    • Portfolio diversification and investment insights.
  • 🚧 TODO Debt Management

    • Track loans (student loans, mortgages, credit card debt).
    • Payment reminders and automated debt payoff plans (e.g., debt snowball, debt avalanche).
    • Interest calculation and amortization schedules.
  • 🚧 TODO Financial Insights & Reports

    • Visualize monthly cash flow (income vs. expenses).
    • Detect trends in cash flow patterns (e.g., surpluses, deficits).
    • Forecast future cash flow based on current spending patterns.
    • Generate monthly, quarterly, and annual financial reports.
    • Provide insights into spending patterns, income trends, and savings performance.
    • Track overall net worth based on assets (bank balances, properties) and liabilities (debts, loans).
    • Historical data visualization to track net worth growth or decline.
  • 🚧 TODO Credit Score Monitoring

    • Link with credit score agencies to monitor and report credit scores.
    • Provide insights on how to improve the credit score.
    • Offer alerts for changes in credit reports.
  • 🚧 TODO Alerts & Notifications

    • Customizable alerts for various financial events (e.g., low balance, overspending, bill due).
    • Notifications for account changes, suspicious activity, or significant financial milestones.
    • Weekly or monthly summaries of financial activities.
  • 🚧 TODO Security Features

    • Bank-level encryption to protect sensitive data.
    • Biometric login (fingerprint, face ID).
    • Automatic logout after a period of inactivity.