{"id":30749637,"url":"https://github.com/thegreenwebfoundation/developer-docs","last_synced_at":"2025-09-04T06:10:10.849Z","repository":{"id":41392803,"uuid":"505914611","full_name":"thegreenwebfoundation/developer-docs","owner":"thegreenwebfoundation","description":"The developer documentation site for The Green Web Foundations open source libraries.","archived":false,"fork":false,"pushed_at":"2025-08-23T12:02:22.000Z","size":852,"stargazers_count":7,"open_issues_count":11,"forks_count":14,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-24T12:47:41.863Z","etag":null,"topics":["carbon","co2","hacktoberfest","sustainability","website"],"latest_commit_sha":null,"homepage":"https://developers.thegreenwebfoundation.org","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thegreenwebfoundation.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"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},"funding":{"custom":["https://www.thegreenwebfoundation.org/donate/"]}},"created_at":"2022-06-21T16:07:04.000Z","updated_at":"2025-08-23T12:02:26.000Z","dependencies_parsed_at":"2025-06-12T04:21:12.399Z","dependency_job_id":"2d0fa71e-083d-40de-acee-2d343b62fb4f","html_url":"https://github.com/thegreenwebfoundation/developer-docs","commit_stats":{"total_commits":281,"total_committers":11,"mean_commits":"25.545454545454547","dds":"0.37722419928825623","last_synced_commit":"57fe76aa352d1539a7bf0d067dded6eee2f83ec5"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thegreenwebfoundation/developer-docs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegreenwebfoundation%2Fdeveloper-docs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegreenwebfoundation%2Fdeveloper-docs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegreenwebfoundation%2Fdeveloper-docs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegreenwebfoundation%2Fdeveloper-docs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thegreenwebfoundation","download_url":"https://codeload.github.com/thegreenwebfoundation/developer-docs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thegreenwebfoundation%2Fdeveloper-docs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273561495,"owners_count":25127396,"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-09-04T02:00:08.968Z","response_time":61,"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":["carbon","co2","hacktoberfest","sustainability","website"],"created_at":"2025-09-04T06:10:06.194Z","updated_at":"2025-09-04T06:10:10.820Z","avatar_url":"https://github.com/thegreenwebfoundation.png","language":"JavaScript","funding_links":["https://www.thegreenwebfoundation.org/donate/"],"categories":[],"sub_categories":[],"readme":"# Green Web Foundation - Developer Docs Website\n\nWelcome to the [developer documentation site](https://developers.thegreenwebfoundation.org/) for Green Web Foundation's open-source libraries. Here, you'll find comprehensive guides and resources to help you understand, use, and contribute to our projects effectively.\n\n## Getting Started\n\nTo work on this site locally, follow these steps:\n\n### Prerequisites\n\nBefore you begin, make sure you have the following software installed on your machine:\n\n- [Node.js](https://nodejs.org/) v20 or later\n- [npm](https://www.npmjs.com/) or [yarn](https://yarnpkg.com/)\n\nThis project is built using the [Eleventy (11ty)](https://www.11ty.dev/) static site generator. The [11ty documentation](https://www.11ty.dev/docs/) has thorough explainers for different bits of functionality that might come in useful when working on this website.\n\nThis project's template files are written in Nunjucks and Markdown. If you are using Visual Studio Code as your code editor when working on this project, we recommend that you install the following plugins:\n\n- [Nunjucks for Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=ronnidc.nunjucks)\n- [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint)\n\n### Installation\n\n1. **Clone repository:** Start by cloning this repository to your local machine using Git:\n\n   ```bash\n   git clone https://github.com/thegreenwebfoundation/developer-docs\n   ```\n\n   If you plan to contribute to this project, then please [create a fork of it](https://github.com/thegreenwebfoundation/developer-docs/fork) in your own Github account before making changes.\n\n2. **Navigate to project directory:** Once the cloning process is complete, navigate to the project directory:\n\n   ```bash\n   cd developer-docs\n   ```\n\n3. **Install dependencies:** Install the project dependencies using npm:\n\n   ```bash\n   npm install\n   ```\n\n   Alternatively, if you prefer using yarn:\n\n   ```bash\n   yarn install\n   ```\n\n### Making Changes\n\n1. **Edit markdown files:** Make changes to the markdown (`.md`) files located in the `src/docs` folder to update the content as needed.\n\n2. **Preview changes:** After making your modifications, run the following command to preview the changes locally:\n\n   ```bash\n   npm run dev\n   ```\n\n   This will start a local development server, allowing you to view your changes in a web browser. You can now view your changes by visiting [https://localhost:8080](https://localhost:8080).\n\n### Using GitPod\n\nAlternatively, you can open this project in GitPod for a hassle-free development experience.\n\n[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/thegreenwebfoundation/developer-docs)\n\n## Contributing changes\n\nTo contribute changes back to this project, please follow the steps outlined in the [CONTRIBUTING.md](/CONTRIBUTING.md) file in this repository.\n\nBy following these steps, you can seamlessly work on this site locally and contribute to improving our developer documentation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthegreenwebfoundation%2Fdeveloper-docs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthegreenwebfoundation%2Fdeveloper-docs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthegreenwebfoundation%2Fdeveloper-docs/lists"}