cli-summary-for-ynab

Get an overview of your YNAB budget information straight from the command line.

Usage no npm install needed!

<script type="module">
  import cliSummaryForYnab from 'https://cdn.skypack.dev/cli-summary-for-ynab';
</script>

README

👷 WIP 👷

CLI Summary for YNAB

Get an overview of your YNAB budget information straight from the command line.

image

Usage

> npx cli-summary-for-ynab budget -t <your-ynab-personal-access-token>

Or

> export YNAB_TOKEN=<your-ynab-personal-access-token>
> yarn global add cli-summary-for-ynab

> ynabsummary budget

CLI Reference

budget

Usage: ynabsummary budget [options]

review your budget at a glance.

Options:
  -t, --token <ynab-token>     token used to authenticate w/YNAB if a YNAB_TOKEN env variable is not set. (default: "")
  -b, --budget-id <budget-id>  the budget id. (default: "last-used")
  -m, --month <month>          get results for a specific month (YYYY-MM-DD) (default: "current")

transactions

Usage: ynabsummary transactions [options]

review your transactions.

Options:
  -t, --token <ynab-token>      token used to authenticate w/YNAB if a YNAB_TOKEN env variable is not set. (default: "")
  -b, --budget-id <budget-id>   the budget id. (default: "last-used")
  -d, --date <start-date>       the start date for the returned transactions (YYYY-MM-DD).
  -a, --account <account-name>  get results for a single account.
  -c, --category <category>     filter the results by a single category.

accounts

Usage: ynabsummary accounts [options]

review your budget accounts.

Options:
  -t, --token <ynab-token>     token used to authenticate w/YNAB if a YNAB_TOKEN env variable is not set. (default: "")
  -b, --budget-id <budget-id>  the budget id. (default: "last-used")
  -c, --closed                 include closed accounts.
  -o, --off-budget             include off-budget accounts.

report

TODO