Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
evidence-connector-ynab
Advanced tools
Easy to use connector for [Evidence](https://evidence.dev) to vizualize and explore your [YNAB](https://ynab.com) budgets.
Easy to use connector for Evidence to vizualize and explore your YNAB budgets.
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!
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
FAQs
Easy to use connector for [Evidence](https://evidence.dev) to vizualize and explore your [YNAB](https://ynab.com) budgets.
The npm package evidence-connector-ynab receives a total of 9 weekly downloads. As such, evidence-connector-ynab popularity was classified as not popular.
We found that evidence-connector-ynab demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.