{"id":41152447,"url":"https://github.com/agarun/agarun.com","last_synced_at":"2026-01-22T19:09:50.726Z","repository":{"id":43306202,"uuid":"398688459","full_name":"agarun/agarun.com","owner":"agarun","description":"My personal website where I host my portfolio, contact information, and blog posts","archived":false,"fork":false,"pushed_at":"2026-01-15T21:36:30.000Z","size":8257,"stargazers_count":4,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-16T00:48:44.148Z","etag":null,"topics":["blog","nextjs","portfolio","react","website"],"latest_commit_sha":null,"homepage":"https://agarun.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/agarun.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2021-08-22T01:22:20.000Z","updated_at":"2024-05-28T00:40:10.000Z","dependencies_parsed_at":"2025-04-19T21:34:00.553Z","dependency_job_id":"0854b48c-93b4-454c-965a-cca774a3ed6b","html_url":"https://github.com/agarun/agarun.com","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/agarun/agarun.com","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agarun%2Fagarun.com","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agarun%2Fagarun.com/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agarun%2Fagarun.com/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agarun%2Fagarun.com/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/agarun","download_url":"https://codeload.github.com/agarun/agarun.com/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/agarun%2Fagarun.com/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28668928,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T17:07:18.858Z","status":"ssl_error","status_checked_at":"2026-01-22T17:05:02.040Z","response_time":144,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["blog","nextjs","portfolio","react","website"],"created_at":"2026-01-22T19:06:05.366Z","updated_at":"2026-01-22T19:09:50.712Z","avatar_url":"https://github.com/agarun.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [agarun.com](agarun.com)\n\nMy personal website where I host my portfolio, contact information, and blog posts. It's always a work in progress, but feel free to look around.\n\n## Getting Started\n\nThe prerequisites are Yarn and Node \u003e= 14.\n\nFirst, install the dependencies:\n\n```bash\nyarn install\n```\n\nRun the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the app.\n\n## Preview 🚀\n\nTo build the site:\n\n```bash\nyarn build\n```\n\nThen, to serve it locally:\n\n```bash\nyarn start\n```\n\n## Technologies 🧰\n\nHosted with [Netlify](https://www.netlify.com/). Built with React and [Next.js](https://nextjs.org/).\n\n### Tooling\n\n- [ESLint](https://eslint.org/)\n  - The ESLint config (`.eslintrc.json`) extends the `create-react-app` config, Next.js config, and includes a few plugins\n- [Prettier](https://prettier.io/)\n- [Husky](https://github.com/typicode/husky)\n  - Pre-commit hooks that run tools like ESLint \u0026 Prettier on modified files via `lint-staged`\n- [Lighthouse](https://github.com/GoogleChrome/lighthouse) to collect performance metrics about webpages\n  - I use this locally and [on Netlify](https://www.netlify.com/blog/2021/03/26/netlify-build-plugin-of-the-week-lighthouse/), in addition to [web.dev/measure](https://web.dev/measure/)\n\n### Styling\n\n- Color modes and theming tokens are implemented with CSS variables (custom properties)\n  - [Josh Comeau's dark mode guide](https://www.joshwcomeau.com/react/dark-mode/), [Theme UI](https://theme-ui.com/), [useDarkMode](https://github.com/donavon/use-dark-mode) were really useful resources to avoid FOUC.\n- [Emotion](https://github.com/emotion-js/emotion) for writing style modules with JavaScript\n- [Framer Motion](https://www.framer.com/motion/) for creating animated components\n\n### Writing\n\n- [https://github.com/unifiedjs/unified](Unified) libraries including remark \u0026 rehype to process HTML and markdown\n- [MDX](https://mdxjs.com/) to use React components (like `next/image`, or custom ones) in Markdown files. I chose to use `next-mdx-remote` over `mdx-bundler` here.\n- [Prism](https://github.com/PrismJS/prism) to theme code snippets (with `prism-theme-vars`!)\n  - [Custom theme](https://github.com/agarun/agarun.com/blob/main/styles/prism.css) based on [Night Owl by Sarah Drasner](https://marketplace.visualstudio.com/items?itemName=sdras.night-owl)\n\n### Testing\n\n- [Jest](https://jestjs.io/) and [React Testing Library](https://testing-library.com/docs/react-testing-library/intro/) for unit and integration tests\n- [Cypress](https://www.cypress.io/) for integration and end-to-end tests\n\n### Misc.\n\nThis is the third iteration of `agarun.com`. The first one was made with [Jekyll](https://jekyllrb.com/), and the second with [Gatsby](https://www.gatsbyjs.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagarun%2Fagarun.com","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fagarun%2Fagarun.com","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fagarun%2Fagarun.com/lists"}