{"id":20105237,"url":"https://github.com/hellotham/astro-base","last_synced_at":"2026-02-28T17:03:41.644Z","repository":{"id":168493163,"uuid":"644170031","full_name":"hellotham/astro-base","owner":"hellotham","description":"Base template for Astro projects","archived":false,"fork":false,"pushed_at":"2025-10-03T08:10:39.000Z","size":1471,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-03T10:17:29.911Z","etag":null,"topics":["astrojs","iconify","template","typescript","unocss","website","website-template"],"latest_commit_sha":null,"homepage":"https://astro-base.netlify.app","language":"JavaScript","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/hellotham.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":"hellotham","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2023-05-23T01:06:43.000Z","updated_at":"2025-10-03T08:10:42.000Z","dependencies_parsed_at":"2023-11-19T03:18:48.814Z","dependency_job_id":"7321b3ff-80a0-4c2e-9a54-d00980392fce","html_url":"https://github.com/hellotham/astro-base","commit_stats":null,"previous_names":["hellotham/astro-base"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/hellotham/astro-base","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellotham%2Fastro-base","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellotham%2Fastro-base/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellotham%2Fastro-base/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellotham%2Fastro-base/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hellotham","download_url":"https://codeload.github.com/hellotham/astro-base/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hellotham%2Fastro-base/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29943678,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-28T13:49:17.081Z","status":"ssl_error","status_checked_at":"2026-02-28T13:48:50.396Z","response_time":90,"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":["astrojs","iconify","template","typescript","unocss","website","website-template"],"created_at":"2024-11-13T17:46:16.109Z","updated_at":"2026-02-28T17:03:41.633Z","avatar_url":"https://github.com/hellotham.png","language":"JavaScript","readme":"# Astro Base\n\n[![Netlify Status](https://api.netlify.com/api/v1/badges/ab88bd2f-6bc0-4352-af4f-d7f490975684/deploy-status)](https://app.netlify.com/sites/astro-base/deploys)\n\n![screenshot](https://github.com/hellotham/astro-base/blob/main/screenshot.png?raw=true)\n\nMinimal [Astro](https://astro.build) starter for new projects. MIT licence.\n\nUses:\n\n- [Typescript](https://www.typescriptlang.org/)\n- [Prettier](https://prettier.io/)\n- [ESLint](https://eslint.org/)\n- [UnoCSS](https://unocss.dev/)\n- `@astrojs/sitemap` and `@astrojs/rss` preintegrated\n- Heroicons and SVG Logos preloaded via [Iconify](https://iconify.design/)\n\n## 🚀 Project Structure\n\nInside of your Astro project, you'll see the following folders and files:\n\n```text\n/\n├── astro.config.mjs          # Astro configuration file\n├── public/                   # Location of static assets\n│   └── favicon.svg\n├── src/\n│   ├── assets/               # Location of dynamic assets (eg. images)\n│   │   └── screenshot.png\n│   ├── components/           # Astro components\n│   │   └── header.astro\n│   ├── content/              # Location of content (markdown, data and images)\n│   │   └── config.ts\n│   ├── layouts/              # Location of layouts for pages\n│   │   └── Layout.astro\n│   └── pages/                # Location of pages\n│       └── index.astro\n├── package.json\n└── tsconfig.json             # Typescript configuration file\n└── uno.config.ts             # UnoCSS configuration file\n```\n\n## 🧞 Commands\n\nAll commands are run from the root of the project, from a terminal:\n\n| Command                   | Action                                           |\n| :------------------------ | :----------------------------------------------- |\n| `pnpm clean`              | Removes dependencies and output files            |\n| `pnpm install`            | Installs dependencies                            |\n| `pnpm dev`                | Starts local dev server at `localhost:4321`      |\n| `pnpm build`              | Build your production site to `./dist/`          |\n| `pnpm preview`            | Preview your build locally, before deploying     |\n| `pnpm lint`               | Runs Prettier and ESLint on files in `src/`      |\n| `pnpm refresh`            | Updates Astro and other dependencies             |\n| `pnpm astro ...`          | Run CLI commands like `astro add`, `astro check` |\n| `pnpm astro -- --help`    | Get help using the Astro CLI                     |\n","funding_links":["https://github.com/sponsors/hellotham"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhellotham%2Fastro-base","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhellotham%2Fastro-base","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhellotham%2Fastro-base/lists"}