{"id":35573007,"url":"https://github.com/georgelopez7/tiramisu","last_synced_at":"2026-01-20T18:23:50.303Z","repository":{"id":332409322,"uuid":"1124683329","full_name":"georgelopez7/tiramisu","owner":"georgelopez7","description":"Tiramisu is a simple, open-source, and lightweight HTTP request inspector. Perfect for testing webhooks, APIs, and integrations with ease.","archived":false,"fork":false,"pushed_at":"2026-01-06T19:35:56.000Z","size":4338,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-13T19:46:30.265Z","etag":null,"topics":["bun","http","nextjs","sqlite","typescript"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/r/geloop/tiramisu","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/georgelopez7.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-29T12:40:06.000Z","updated_at":"2026-01-08T01:08:04.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/georgelopez7/tiramisu","commit_stats":null,"previous_names":["georgelopez7/tiramisu"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/georgelopez7/tiramisu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgelopez7%2Ftiramisu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgelopez7%2Ftiramisu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgelopez7%2Ftiramisu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgelopez7%2Ftiramisu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/georgelopez7","download_url":"https://codeload.github.com/georgelopez7/tiramisu/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/georgelopez7%2Ftiramisu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28609022,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T16:10:39.856Z","status":"ssl_error","status_checked_at":"2026-01-20T16:10:39.493Z","response_time":117,"last_error":"SSL_read: 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":["bun","http","nextjs","sqlite","typescript"],"created_at":"2026-01-04T18:21:18.701Z","updated_at":"2026-01-20T18:23:50.286Z","avatar_url":"https://github.com/georgelopez7.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\"./public/tiramisu-banner-light.png#gh-light-mode-only\" width=\"300\"\u003e\n  \u003cimg src=\"./public/tiramisu-banner-dark.png#gh-dark-mode-only\" width=\"300\"\u003e\n\u003c/div\u003e\n\n\u003chr /\u003e\n\n\u003cp align=\"center\"\u003e\n  Tiramisu is a simple, open-source, and lightweight HTTP request inspector. Perfect for testing webhooks, APIs, and integrations with ease.\n\u003c/p\u003e\n\n\u003cdiv align=\"center\"\u003e\n    \u003cimg src=\"./public/screenshots/tiramisu.png\" width=\"600\"\u003e\n\u003c/div\u003e\n\n## Running with Docker\n\nCheckout the Docker image [here](https://hub.docker.com/r/geloop/tiramisu)\n\n`docker-compose.yaml`\n\n```bash\nservices:\n  tiramisu:\n    image: geloop/tiramisu:latest\n    ports:\n      - \"3000:3000\"\n    environment:\n      - WEBHOOK_SECRET=\u003cwebhook-secret\u003e [OPTIONAL]\n      - SIGNATURE_HEADER=\u003csignature-header\u003e (e.g X-Signature) [OPTIONAL]\n      - TIMESTAMP_HEADER=\u003ctimestamp-header\u003e (e.g X-Timestamp) [OPTIONAL]\n    volumes:\n      - tiramisu-data:/app/data\n\nvolumes:\n  tiramisu-data:\n```\n\nStart **Tiramisu**:\n\n```bash\ndocker-compose up\n```\n\n## Webhook Testing\n\nTiramisu offers webhook signature validation, allowing you to verify the authenticity of incoming requests.\n\nSet up the following environment variables:\n\n- `WEBHOOK_SECRET`: The secret key used to sign your webhook requests.\n- `SIGNATURE_HEADER`: The header key used to store the signature in the request.\n- `TIMESTAMP_HEADER`: The header key used to store the timestamp in the request.\n\n#### Validation Process\n\nThe expected signature format is: `{timestamp}.{payload}`\n\nTiramisu uses the SHA256 algorithm to generate generate the signature and validate the received signature from the `SIGNATURE_HEADER` in.\n\nAdditionally, any out-of-date requests will be labelled as invalid using the `TIMESTAMP_HEADER` header.\n\n## Tech Stack\n\n![Next.js](https://img.shields.io/badge/Next.js-000000?style=for-the-badge\u0026logo=next.js\u0026logoColor=white)\n![Bun](https://img.shields.io/badge/Bun-000000?style=for-the-badge\u0026logo=bun\u0026logoColor=white)\n![Drizzle](https://img.shields.io/badge/Drizzle-000000?style=for-the-badge\u0026logo=drizzle\u0026logoColor=white)\n![SQLite](https://img.shields.io/badge/SQLite-000000?style=for-the-badge\u0026logo=sqlite\u0026logoColor=white)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorgelopez7%2Ftiramisu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeorgelopez7%2Ftiramisu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeorgelopez7%2Ftiramisu/lists"}