New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

evidence-connector-ynab

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

evidence-connector-ynab

Easy to use connector for [Evidence](https://evidence.dev) to vizualize and explore your [YNAB](https://ynab.com) budgets.

  • 1.0.2
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
9
Maintainers
1
Weekly downloads
 
Created
Source

Evidence Connector YNAB

Easy to use connector for Evidence to vizualize and explore your YNAB budgets.

Usage

To use this project, install it into your Evidence project

  npm i evidence-connector-ynab

Then add it to your evidence.plugins.yaml as a datasource:

datasources:
    # ...
    evidence-connector-ynab: {}

Run your Evidence project, and navigate to the settings page, and add a new YNAB source.

Add a YNAB Personal Access Token (get one from the Developer Settings) to your source.

Open the schema explorer to see the new tables imported from your budget!

Examples

See transactions by category by week

SELECT  c.name,
        date_trunc('week', t.date) as weekof,
        COUNT(DISTINCT t.id) as transactions,
        SUM(t.amount) as total,
        AVG(t.amount) as avg 
FROM ynab.transactions t
    INNER JOIN ynab.categories c on t.category_id = c.id
GROUP BY ALL

See number of transactions by payee

SELECT
        p.name,
        count(distinct t.id) as transactions
FROM ynab.transactions t
    INNER JOIN ynab.payees p on t.payee_id = p.id
GROUP BY ALL

Keywords

FAQs

Package last updated on 28 Jan 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc