{"id":19865122,"url":"https://github.com/glweems/gatsby-source-websites","last_synced_at":"2025-10-08T00:38:05.823Z","repository":{"id":44086454,"uuid":"201292560","full_name":"glweems/gatsby-source-websites","owner":"glweems","description":"A gatsby source plugin for creating nodes from your website projects","archived":false,"fork":false,"pushed_at":"2022-12-04T06:39:42.000Z","size":443,"stargazers_count":1,"open_issues_count":18,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T00:32:35.002Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/glweems.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-08-08T16:02:43.000Z","updated_at":"2023-03-09T02:18:29.000Z","dependencies_parsed_at":"2023-01-22T20:31:15.649Z","dependency_job_id":null,"html_url":"https://github.com/glweems/gatsby-source-websites","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":"glweems/gatsby-plugin-template-typescript","purl":"pkg:github/glweems/gatsby-source-websites","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fgatsby-source-websites","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fgatsby-source-websites/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fgatsby-source-websites/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fgatsby-source-websites/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/glweems","download_url":"https://codeload.github.com/glweems/gatsby-source-websites/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/glweems%2Fgatsby-source-websites/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278872111,"owners_count":26060525,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-11-12T15:21:16.452Z","updated_at":"2025-10-08T00:38:05.774Z","avatar_url":"https://github.com/glweems.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eWelcome to gatsby-source-websites 👋\u003c/h1\u003e\n\u003cp\u003e\n  \u003cimg alt=\"Version\" src=\"https://img.shields.io/badge/version-0.0.1-blue.svg?cacheSeconds=2592000\" /\u003e\n  \u003ca href=\"https://github.com/glweems/gatsby-plugin-template-typescript#readme\"\u003e\n    \u003cimg alt=\"Documentation\" src=\"https://img.shields.io/badge/documentation-yes-brightgreen.svg\" target=\"_blank\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/glweems/gatsby-plugin-template-typescript/graphs/commit-activity\"\u003e\n    \u003cimg alt=\"Maintenance\" src=\"https://img.shields.io/badge/Maintained%3F-yes-green.svg\" target=\"_blank\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/glweems/gatsby-plugin-template-typescript/blob/master/LICENSE\"\u003e\n    \u003cimg alt=\"License: MIT\" src=\"https://img.shields.io/badge/License-MIT-yellow.svg\" target=\"_blank\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e a starter repo for creating gatsby plugins in typescript\n\n### 🏠 [Homepage](https://github.com/glweems/gatsby-plugin-template-typescript.git)\n\n## Install\n\n```sh\nnpm install gatsby-source-websites\n```\n\nor\n\n```sh\nyarn add gatsby-source-websites\n```\n\n## Setup\n\n```javascript\n{\n  plugins: [\n    {\n      resolve: `gatsby-source-websites`\n      options: {\n        websites: [\n          {\n            name: `My Super Fresh Website`,\n            slug: `my-super-fresh-website`,\n            url: `https://superfreshsite.com`,\n\n            // Optional\n            description: `This is a super fresh site I build because I'm super fresh`,\n            repo: `https://github.com/glweems/superfreshsite`\n          },\n          {\n            // Add another website with same info\n          }\n        ]\n        // Website screenshot options\n        sizes: ['1920x1080','1920x1080'],\n        delay: 10,\n        crop: false,\n\n        // Defaults are\n        // sizes: ['1920x1080'],\n        // delay: 2,\n        // crop: true,\n      }\n    }\n  ]\n}\n```\n\n## Usage\n\nQuery info through graphql\n\n```graphql\nquery MyWebsites {\n    allWebsites {\n        nodes {\n            name\n            slug\n            url\n            description\n            repo\n        }\n    }\n}\n```\n\n## Author\n\n👤 **Garrett Weems \u003cgwgraphicdesign@gmail.com\u003e**\n\n-   Github: [@glweems](https://github.com/glweems)\n\n## 🤝 Contributing\n\nContributions, issues and feature requests are welcome!\u003cbr /\u003eFeel free to check [issues page](https://github.com/glweems/gatsby-plugin-template-typescript/issues).\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nCopyright © 2019 [Garrett Weems \u003cgwgraphicdesign@gmail.com\u003e](https://github.com/glweems).\u003cbr /\u003e\nThis project is [MIT](https://github.com/glweems/gatsby-plugin-template-typescript/blob/master/LICENSE) licensed.\n\n---\n\n_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglweems%2Fgatsby-source-websites","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fglweems%2Fgatsby-source-websites","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fglweems%2Fgatsby-source-websites/lists"}