{"id":21497069,"url":"https://github.com/financial-times/dotcom-reliability-kit","last_synced_at":"2026-03-12T17:28:13.669Z","repository":{"id":37928184,"uuid":"486647335","full_name":"Financial-Times/dotcom-reliability-kit","owner":"Financial-Times","description":"🪨 A well tested suite of tools designed to help FT.com applications be more reliable and measurable","archived":false,"fork":false,"pushed_at":"2024-11-11T13:57:08.000Z","size":4942,"stargazers_count":7,"open_issues_count":17,"forks_count":1,"subscribers_count":53,"default_branch":"main","last_synced_at":"2024-11-11T14:41:42.322Z","etag":null,"topics":["reliability-kit"],"latest_commit_sha":null,"homepage":"","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/Financial-Times.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"docs/contributing.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":"docs/support.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-04-28T15:21:10.000Z","updated_at":"2024-11-11T13:55:52.000Z","dependencies_parsed_at":"2022-07-07T23:13:09.178Z","dependency_job_id":"257b6d64-2a73-45b4-8dca-6daab28f684c","html_url":"https://github.com/Financial-Times/dotcom-reliability-kit","commit_stats":{"total_commits":1009,"total_committers":16,"mean_commits":63.0625,"dds":0.514370664023786,"last_synced_commit":"7637de5a6ce500b10b440277859654616c0a7d15"},"previous_names":[],"tags_count":386,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Financial-Times%2Fdotcom-reliability-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Financial-Times%2Fdotcom-reliability-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Financial-Times%2Fdotcom-reliability-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Financial-Times%2Fdotcom-reliability-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Financial-Times","download_url":"https://codeload.github.com/Financial-Times/dotcom-reliability-kit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226065258,"owners_count":17568182,"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":["reliability-kit"],"created_at":"2024-11-23T16:21:15.220Z","updated_at":"2026-03-12T17:28:13.659Z","avatar_url":"https://github.com/Financial-Times.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003ch1 align=\"center\"\u003e\n    \u003cimg alt=\"FT.com Reliability Kit\" width=\"400\" src=\"https://raw.githubusercontent.com/Financial-Times/dotcom-reliability-kit/main/resources/logos/src/reliability-kit-color.svg\" /\u003e\n\u003c/h1\u003e\n\nReliability Kit is a well tested suite of tools designed to help FT.com applications be more reliable and measurable.\n\n## Usage guide\n\nWe maintain documentation in this repo:\n\n  * **The [getting started guide](./docs/getting-started/#readme)** is the best place to begin, it guides you through good error handling practices and how you can use Reliability Kit to improve your app's error handling\n\n  * **The package README files** in this monorepo contain technical documentation. They can be found in the [`packages` folder](./packages/). A brief outline of what each package does is listed here:\n\n    * **[@dotcom-reliability-kit/app-info](./packages/app-info/#readme):**\u003cbr/\u003e\n      A utility to get application information (e.g. the system code) in a consistent way\n\n    * **[@dotcom-reliability-kit/biome-config](./packages/biome-config/#readme):**\u003cbr/\u003e\n      A Biome configuration focused on resolving code quality and reliability issues without making any code style decisions.\n\n    * **[@dotcom-reliability-kit/client-metrics-web](./packages/client-metrics-web/README.md):**\u003cbr/\u003e\n      A lightweight client for sending operational metrics events from the browser to the Customer Products Client Metrics Server.\n\n    * **[@dotcom-reliability-kit/crash-handler](./packages/crash-handler/#readme):**\u003cbr/\u003e\n      A method to bind an uncaught exception handler to ensure that fatal application errors are logged. It is a replacement for Sentry fatal error logging.\n\n    * **[@dotcom-reliability-kit/errors](./packages/errors/#readme):**\u003cbr/\u003e\n      A suite of error classes which help you throw the most appropriate error in any situation\n\n    * **[@dotcom-reliability-kit/eslint-config](./packages/eslint-config/#readme):**\u003cbr/\u003e\n    A linting config, specifically focussed on enhancing code quality and proactively catching errors/bugs before they make it into production.\n\n    * **[@dotcom-reliability-kit/fetch-error-handler](./packages/fetch-error-handler/#readme):**\u003cbr/\u003e\n      Properly handle fetch errors and avoid a lot of boilerplate in your app.\n\n    * **[@dotcom-reliability-kit/log-error](./packages/log-error/#readme):**\u003cbr/\u003e\n      A method to consistently log error object with optional request information\n\n    * **[@dotcom-reliability-kit/logger](./packages/logger/#readme):**\u003cbr/\u003e\n      A simple and fast logger based on [Pino](https://getpino.io/), with FT preferences baked in\n\n    * **[@dotcom-reliability-kit/middleware-allow-request-methods](./packages/middleware-allow-request-methods/README.md):**\u003cbr/\u003e\n      Express middleware that returns 405 (rather than 404) for disallowed request methods\n\n    * **[@dotcom-reliability-kit/middleware-log-errors](./packages/middleware-log-errors/#readme):**\u003cbr/\u003e\n      Express middleware to consistently log errors\n\n    * **[@dotcom-reliability-kit/middleware-render-error-info](./packages/middleware-render-error-info/#readme):**\u003cbr/\u003e\n      Express middleware to render error information in a browser in a way that makes local debugging easier\n\n    * **[@dotcom-reliability-kit/opentelemetry](./packages/opentelemetry/#readme):**\u003cbr/\u003e\n      An [OpenTelemetry](https://opentelemetry.io/docs/what-is-opentelemetry/) client that's preconfigured for drop-in use in FT apps.\n\n    * **[@dotcom-reliability-kit/serialize-error](./packages/serialize-error/#readme):**\u003cbr/\u003e\n      A utility function to serialize an error object in a way that's friendly to loggers, view engines, and converting to JSON\n\n    * **[@dotcom-reliability-kit/serialize-request](./packages/serialize-request/#readme):**\u003cbr/\u003e\n      A utility function to serialize a request object in a way that's friendly to loggers, view engines, and converting to JSON\n\n  * **Example projects** illustrate more real-world examples of how to use Reliability Kit. These live in separate repositories:\n\n    * **[Express example](https://github.com/Financial-Times/reliability-kit-example-express#readme):**\u003cbr/\u003e\n      An example of how to use Reliability Kit with an [Express](https://expressjs.com/)-based application\n\n    * **[Serverless example](https://github.com/Financial-Times/reliability-kit-example-serverless#readme):**\u003cbr/\u003e\n      An example of how to use Reliability Kit with a [Serverless](https://www.serverless.com/) application\n\n## Design\n\nTo understand the design decisions we made when building this project, [read the design guide here](docs/design.md).\n\n\n## Contributing\n\n[The contributing guide is available here](docs/contributing.md). You can find a [roadmap with planned work here](https://github.com/orgs/Financial-Times/projects/111).\n\n\n## Support\n\n[The support that we aim to offer is available here](docs/support.md).\n\n\n## License\n\nLicensed under the [MIT](LICENSE) license.\u003cbr/\u003e\nCopyright \u0026copy; 2022, The Financial Times Ltd.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffinancial-times%2Fdotcom-reliability-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffinancial-times%2Fdotcom-reliability-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffinancial-times%2Fdotcom-reliability-kit/lists"}