{"id":21927364,"url":"https://github.com/yaroslavgaponov/reddwarf","last_synced_at":"2026-05-09T19:31:44.602Z","repository":{"id":148812232,"uuid":"320419087","full_name":"YaroslavGaponov/reddwarf","owner":"YaroslavGaponov","description":"microservice framework","archived":false,"fork":false,"pushed_at":"2020-12-19T10:45:24.000Z","size":1727,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-23T18:06:54.213Z","etag":null,"topics":["backend","broker","framework","javascript","microservice","microservices","nodejs","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/YaroslavGaponov.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2020-12-10T23:55:08.000Z","updated_at":"2023-03-04T05:08:26.000Z","dependencies_parsed_at":"2023-06-27T17:34:17.521Z","dependency_job_id":null,"html_url":"https://github.com/YaroslavGaponov/reddwarf","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/YaroslavGaponov/reddwarf","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YaroslavGaponov%2Freddwarf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YaroslavGaponov%2Freddwarf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YaroslavGaponov%2Freddwarf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YaroslavGaponov%2Freddwarf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/YaroslavGaponov","download_url":"https://codeload.github.com/YaroslavGaponov/reddwarf/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/YaroslavGaponov%2Freddwarf/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32832869,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-08T08:22:46.396Z","status":"online","status_checked_at":"2026-05-09T02:00:06.633Z","response_time":123,"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":["backend","broker","framework","javascript","microservice","microservices","nodejs","typescript"],"created_at":"2024-11-28T22:14:52.309Z","updated_at":"2026-05-09T19:31:44.596Z","avatar_url":"https://github.com/YaroslavGaponov.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"RedDwarf\n========\nmicroservice framework\n\n# Sections\n\n* [Overview](#overview)\n* [General schema](#general-schema)\n* [Supported languages](#supported-languages)\n* [Supported message brokers](#supported-message-brokers)\n* [How to try](#how-to-try)\n  * [Required](#required)\n  * [Start core components](#start-core-components)\n    * [With local broker](#with-local-broker)\n    * [With redis broker](#with-redis-broker)\n  * [Open monitor](#open-monitor)\n  * [REST access](#rest-access)\n  * [Stop core components](#stop-core-components)\n* [Core components](#core-components)\n  * [Gateway](#gateway)\n    * [Wherefore](#wherefore)\n  * [Monitor](#monitor)\n    * [Wherefore](#wherefore-1)\n  * [Upstream](#upstream)\n    * [Wherefore](#wherefore-2)\n\n# Overview\n\nThe goal of this framework is to create a convenient and flexible platform for developing microservices in different languages.\n\n# General schema\n\n![Dwarf](images/dwarf.png)\n\n# Supported languages\n\n  - [Example Node.js (Typescript)](packages/demo-typescript/readme.md)\n  - [Example Node.js (Javascript)](packages/demo-nodejs/readme.md)\n  - ...\n\n\n# Supported message brokers\n\n  - local\n  - redis\n  - ...\n\n\n# How to try\n\n## Required\n\n - docker\n - docker-compose\n - make\n\n\n## Start core components\n\n## With local broker\n\n```sh\nmake build\nmake start\n```\n\n## With redis broker\n\n```sh\nmake build-redis\nmake start-redis\n```\n\n\n![Dwarf start](/images/dwarf-start.png)\n\n\n## Open monitor\n\nOpen `http://localhost:38081/`\n\nor\n\n```sh\nmake monitor\n```\n\n\n![Dwarf monitor](/images/dwarf-monitor.png)\n\n\n## REST access\n\nOpen `http://localhost:38082/upstream/dwarf-demo/rreverse?str=hello`\n\nor\n\n```sh\ncurl \"http://localhost:38082/upstream/dwarf-demo/reverse?str=Hello\"\n```\n\n\n![Dwarf upstream](/images/dwarf-upstream.png)\n\n\n## Stop core components\n\n```sh\nmake stop\n```\n\nor\n\n```sh\nmake stop-redis\n```\n\n# Core components\n\n\n## Gateway\n\n\n### Wherefore\n\n  * single entry point\n  * simple protocol for accessing different message brokers\n\n\n[Dwarf-gateway](packages/gateway/readme.md)\n\n\n## Monitor\n\n\n### Wherefore\n\n  * сonvenient graphical interface to the system\n  * quick health check of microservices\n\n\n[Dwarf-monitor](packages/monitor/readme.md)\n\n\n## Upstream\n\n\n### Wherefore\n\n  * microservices have REST protocol support out of the box\n\n\n[Dwarf-upstream](packages/upstream/readme.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaroslavgaponov%2Freddwarf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyaroslavgaponov%2Freddwarf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyaroslavgaponov%2Freddwarf/lists"}