{"id":19738315,"url":"https://github.com/httptoolkit/httptoolkit-website","last_synced_at":"2025-04-05T21:06:03.194Z","repository":{"id":32970045,"uuid":"129736865","full_name":"httptoolkit/httptoolkit-website","owner":"httptoolkit","description":"The main website of HTTP Toolkit: beautiful, cross-platform \u0026 open-source tools to debug, test and develop with HTTP(S).","archived":false,"fork":false,"pushed_at":"2025-03-29T04:41:26.000Z","size":261785,"stargazers_count":79,"open_issues_count":3,"forks_count":32,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-29T20:04:14.568Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://httptoolkit.com","language":"MDX","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/httptoolkit.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-04-16T12:06:37.000Z","updated_at":"2025-03-27T14:06:12.000Z","dependencies_parsed_at":"2023-10-25T15:04:39.720Z","dependency_job_id":"12e0940b-a3a4-4b06-8328-b771aaf3b3d2","html_url":"https://github.com/httptoolkit/httptoolkit-website","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/httptoolkit%2Fhttptoolkit-website","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/httptoolkit%2Fhttptoolkit-website/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/httptoolkit%2Fhttptoolkit-website/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/httptoolkit%2Fhttptoolkit-website/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/httptoolkit","download_url":"https://codeload.github.com/httptoolkit/httptoolkit-website/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247399871,"owners_count":20932876,"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","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-12T01:13:52.826Z","updated_at":"2025-04-05T21:06:03.173Z","avatar_url":"https://github.com/httptoolkit.png","language":"MDX","readme":"HTTP Toolkit Site [![Build Status](https://github.com/httptoolkit/httptoolkit-website/workflows/CI/badge.svg)](https://github.com/httptoolkit/httptoolkit-website/actions)\n===================\n\nThis repo contains the full source for [httptoolkit.com](https://httptoolkit.com) - the main website of HTTP Toolkit.\n\nIf you're looking for the website source, either to suggest a change or because you're just curious, you're in the right place.\n\nLooking to file bugs, request features or send feedback? File an issue or vote on existing ones at [github.com/httptoolkit/httptoolkit](https://github.com/httptoolkit/httptoolkit).\n\n## Table of Contents\n\n- [Project Details](#project-details)\n  - [Stack](#stack)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n- [Contribution Guidelines](#contribution-guidelines)\n  - [How Can You Contribute?](#how-can-you-contribute)\n  - [Getting Started](#getting-started-1)\n- [Project Conventions](#project-conventions)\n  - [Git commit messages](#git-commit-messages)\n  - [Styles](#styles)\n    - [Formatting and Validation](#formatting-and-validation)\n\n## Project Details\n\n### Stack\n\nThe website is built with Next.js and use MDX as a content management. The rendering approach is SSG.\n\n- Next.js App directory\n- React 18\n- Typescript\n- Styled Components\n- MDX\n- Algolia DocSearch\n- Posthog\n- Radix UI for primitives components\n- [next-image-export-optimizer](https://github.com/Niels-IO/next-image-export-optimizer) For image optimization at built time.\n\n## Getting Started\n\n### Prerequisites\n\nUse any modern Node version, and just run:\n\n```bash\nnpm install\n```\n\n### Run Next.js in development mode\n\nLaunch the local dev site with:\n\n```bash\nnpm run dev\n```\n\nand then open it at [localhost:3000](https://localhost:3000)\n\n## Contribution Guidelines\n\nThank you for considering contributing to httptoolkit-website! We welcome contributions from everyone.\n\n### How Can You Contribute?\n\nThere are several ways you can contribute to httptoolkit-website:\n\n1. **Reporting Bugs**: If you find a bug, please ensure it hasn't been reported already in the Issues section, and then open a new issue with a detailed description of the problem.\n\n2. **Submitting Feature Requests**: Have an idea for a new feature? Feel free to open an issue and describe your feature request.\n\n3. **Improving Documentation**: Documentation can always be improved. If you find something unclear or missing, feel free to submit a pull request with your improvements.\n\n4. **Fixing Issues**: Browse through the open issues. If you find one you can tackle, feel free to submit a pull request with your fix.\n\n5. **Adding New Posts**: Have a post you want to add? Please open an issue first to discuss it, and then submit a pull request with your content.\n\n### Getting Started\n\nTo get started with contributing to httptoolkit-website, follow these steps:\n\n1. **Fork the Repository**: Click on the \"Fork\" button at the top right corner of the repository page to create your own fork.\n2. **Clone the Repository**: Clone your forked repository to your local machine using the following command:\n\n    ``` bash\n    git clone https://github.com/your-username/httptoolkit-website.git\n    ```\n\n3. **Install Dependencies**: Navigate to the project directory and install the required dependencies:\n\n    ```bash\n    cd httptoolkit-website\n    npm install\n    ```\n4. **Make Changes**: Make your desired changes to the codebase.\n5. **Test Your Changes**: Before submitting a pull request, ensure that your changes work as expected and do not introduce any new issues.\n6. **Commit Your Changes**: Once you're happy with your changes, commit them to your forked repository.\n7. **Push Changes**: Push your changes to your forked repository.\n8. **Submit a Pull Request**: Finally, go to the original repository and click on the \"New Pull Request\" button to submit your changes for review.\n\n## Project Conventions\n\nPlease ensure that your code adheres to the existing code style and conventions used in the project.\n\n### Placement of the images:\n\nIn order to get the benefits of the image optimization, these images should stored inside the public folder like `public/images/posts/..` or `public/images/docs/..` (except for the statically imported images and remote images). Then these images can be referenced in the src attribute of the `\u003cImage /\u003e` element.\n\n### Styles\n\nThis project uses Styled Components for styling.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhttptoolkit%2Fhttptoolkit-website","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhttptoolkit%2Fhttptoolkit-website","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhttptoolkit%2Fhttptoolkit-website/lists"}