{"id":23610079,"url":"https://github.com/fa-sharp/peek-for-ynab","last_synced_at":"2026-04-02T17:42:15.263Z","repository":{"id":258469715,"uuid":"502647040","full_name":"fa-sharp/peek-for-ynab","owner":"fa-sharp","description":"A browser extension for YNAB to check current balances and add transactions.","archived":false,"fork":false,"pushed_at":"2026-03-26T06:00:41.000Z","size":5088,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-26T11:52:45.677Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://peekforynab.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fa-sharp.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":"contributing.md","funding":null,"license":"license.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-06-12T15:00:48.000Z","updated_at":"2026-03-26T06:00:45.000Z","dependencies_parsed_at":"2025-02-18T12:54:59.431Z","dependency_job_id":"895af616-1d4e-4a5f-b305-8a5c5d1f771b","html_url":"https://github.com/fa-sharp/peek-for-ynab","commit_stats":null,"previous_names":["fa-sharp/peek-for-ynab"],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/fa-sharp/peek-for-ynab","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fa-sharp%2Fpeek-for-ynab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fa-sharp%2Fpeek-for-ynab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fa-sharp%2Fpeek-for-ynab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fa-sharp%2Fpeek-for-ynab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fa-sharp","download_url":"https://codeload.github.com/fa-sharp/peek-for-ynab/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fa-sharp%2Fpeek-for-ynab/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31312316,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-27T15:16:00.252Z","updated_at":"2026-04-02T17:42:15.254Z","avatar_url":"https://github.com/fa-sharp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Peek for YNAB\r\n\r\n[![CI status](https://github.com/fa-sharp/peek-for-ynab/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/fa-sharp/peek-for-ynab/actions/workflows/ci.yml)\r\n[![Website deployment status](https://github.com/fa-sharp/peek-for-ynab/actions/workflows/website.yml/badge.svg)](https://github.com/fa-sharp/peek-for-ynab/actions/workflows/website.yml)\r\n[![Web Store submission status](https://github.com/fa-sharp/peek-for-ynab/actions/workflows/submit.yml/badge.svg)](https://github.com/fa-sharp/peek-for-ynab/actions/workflows/submit.yml)\r\n[![Chrome Web Store rating](https://img.shields.io/chrome-web-store/stars/oakibhlecegcmjcjppmjkiaeedoljbmk?label=Chrome%20Web%20Store)](https://chromewebstore.google.com/detail/peek-for-ynab/oakibhlecegcmjcjppmjkiaeedoljbmk)\r\n\r\nA browser extension for YNAB that lets users see their category and account balances at a glance, quickly add transactions, setup customizable notifications, and more. See full feature list and installation links on the [extension website](https://peekforynab.com).\r\n\r\n## Project layout\r\n\r\n- `extension/` Browser extension using WXT, React, and TypeScript\r\n  - `src/`\r\n    - `components/` React components\r\n    - `entrypoints/` Extension popup page, options page, and background script\r\n    - `lib/` Library and utility functions\r\n    - `styles/` Extension CSS / Sass styles\r\n  - `test/` Unit tests with Vitest\r\n- `web/` Website and server using Astro and Fastify\r\n  - `server/` Fastify server (OAuth flow, API routes, and Astro static files)\r\n    - `routes/` API routes\r\n  - `src/`\r\n    - `pages/` All website pages (Astro)\r\n\r\n## Building and running locally\r\n\r\nYou must have Node.js (\u003e= 22) and pnpm installed before proceeding.\r\n\r\n### Environment variables\r\n\r\nSet up an OAuth application in your YNAB [Developer Settings](https://app.ynab.com/settings/developer). Then, in both the `extension/` and `web/` directories, copy the `.env.example` file to `.env` and fill in the values.\r\n\r\n### Backend / Web\r\n\r\nThe server and website is created with [Fastify](https://fastify.dev) and [Astro](https://astro.build/). The server is located in the `/web/server` folder, and the web pages are located in the `web/src/pages` folder. You can run the server via:\r\n\r\n```bash\r\ncd web\r\npnpm install\r\npnpm build\r\npnpm start\r\n```\r\n\r\n### Extension\r\n\r\nThis extension is developed using the [WXT framework](https://wxt.dev/). To run the extension's development server, make sure the Astro server (see above) is running and then run:\r\n\r\n```bash\r\ncd extension\r\npnpm install\r\npnpm dev\r\n```\r\n\r\nA development browser should open automatically and load the extension.\r\n\r\n\r\n## Building for production\r\n\r\n### Extension\r\n\r\n```bash\r\ncd extension\r\npnpm build\r\n```\r\n\r\nThe extension will be built to the `extension/build/chrome-mv3` folder. This can be loaded into Chrome by navigating to `chrome://extensions/` and clicking \"Load unpacked\".\r\n\r\n### Backend / Web\r\n\r\n```bash\r\ncd web\r\npnpm build\r\n```\r\n\r\nThe Astro backend and website will be built as an Express-compatible middleware to the `web/dist/` folder. You can then run the Fastify server via:\r\n\r\n```bash\r\npnpm start\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffa-sharp%2Fpeek-for-ynab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffa-sharp%2Fpeek-for-ynab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffa-sharp%2Fpeek-for-ynab/lists"}