{"id":13520472,"url":"https://github.com/anthonygauthier/blazin","last_synced_at":"2026-04-20T09:32:10.024Z","repository":{"id":56204597,"uuid":"242224859","full_name":"anthonygauthier/blazin","owner":"anthonygauthier","description":"A blazing fast web application framework for Deno","archived":false,"fork":false,"pushed_at":"2021-02-07T01:53:31.000Z","size":27,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-27T22:14:47.566Z","etag":null,"topics":["deno","framework","framework-javascript","javascript","rest","rest-api","typescript","web"],"latest_commit_sha":null,"homepage":"","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/anthonygauthier.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}},"created_at":"2020-02-21T20:28:08.000Z","updated_at":"2022-05-27T16:57:49.000Z","dependencies_parsed_at":"2022-08-15T14:40:24.817Z","dependency_job_id":null,"html_url":"https://github.com/anthonygauthier/blazin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anthonygauthier/blazin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygauthier%2Fblazin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygauthier%2Fblazin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygauthier%2Fblazin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygauthier%2Fblazin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anthonygauthier","download_url":"https://codeload.github.com/anthonygauthier/blazin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygauthier%2Fblazin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32041272,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"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":["deno","framework","framework-javascript","javascript","rest","rest-api","typescript","web"],"created_at":"2024-08-01T05:02:21.834Z","updated_at":"2026-04-20T09:32:10.005Z","avatar_url":"https://github.com/anthonygauthier.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# blazin'\n`blazin` is a [Deno](https://deno.land/) web application framework. It is built directly on top of the `std/http` core library.\nIt's syntax is inspired by Express.js.\n\n## Features\n\nThe goal of `blazin` is obviously to be blazin' fast, but also be *hella* simple. With simplicity in mind,\n`blazin` comes with :\n\n* A `Router` component\n* A simplified `Response` component\n* A `Logger` to understand what's going on inside your server \n* Support for middlewares with the `Middleware` component\n\n## Example: hello world\nHere is the simplest implementation of a hello-world in `blazin`\n\n```typescript\nimport { Blazin } from \"https://raw.githubusercontent.com/delirius325/blazin/master/Blazin.ts\";\n\nconst blazin = new Blazin(8000)\n\nblazin.router.get(\"/\", res =\u003e {\n    res.status(200)\n       .headers({\"X-HelloWorld-Header\": \"hello-world\"})\n       .send({message: \"Hello World!\" })\n});\n\nblazin.start();\n```\n\n## Performance benchmark\n\nSimple `hello world` server:\n\nSee [benchmark.yaml](tests/performance/benchmark.yaml) for the test configuration\n\n```text\nSummary report @ 18:11:01(+0000) 2020-10-14\n  Scenarios launched:  180\n  Scenarios completed: 180\n  Requests completed:  540\n  Mean response/sec: 3.01\n  Response time (msec):\n    min: 0.2\n    max: 50\n    median: 0.5\n    p95: 1\n    p99: 7.9\n  Scenario counts:\n    0: 180 (100%)\n  Codes:\n    200: 540\n```\n\n## Contributing\nTo contribute, please refer to the [CONTRIBUTING.md](./CONTRIBUTING.md) file.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonygauthier%2Fblazin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanthonygauthier%2Fblazin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonygauthier%2Fblazin/lists"}