{"id":26180015,"url":"https://github.com/jellydn/moleculer-connect","last_synced_at":"2025-06-14T00:05:05.175Z","repository":{"id":209682545,"uuid":"724693517","full_name":"jellydn/moleculer-connect","owner":"jellydn","description":"A command-line interface for connecting to Moleculer microservices","archived":false,"fork":false,"pushed_at":"2025-06-06T20:14:38.000Z","size":150,"stargazers_count":5,"open_issues_count":11,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-06-06T21:23:58.451Z","etag":null,"topics":["cli","moleculerjs","repl"],"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/jellydn.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},"funding":{"github":["jellydn"],"ko_fi":"dunghd","buy_me_a_coffee":"dunghd","polar":"jellydn"}},"created_at":"2023-11-28T15:48:55.000Z","updated_at":"2024-12-17T08:46:01.000Z","dependencies_parsed_at":"2024-01-27T18:28:49.479Z","dependency_job_id":"78231aa8-a488-4660-9eb6-2b06f0c7d8ac","html_url":"https://github.com/jellydn/moleculer-connect","commit_stats":null,"previous_names":["jellydn/moleculer-connect"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/jellydn/moleculer-connect","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellydn%2Fmoleculer-connect","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellydn%2Fmoleculer-connect/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellydn%2Fmoleculer-connect/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellydn%2Fmoleculer-connect/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jellydn","download_url":"https://codeload.github.com/jellydn/moleculer-connect/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jellydn%2Fmoleculer-connect/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259737919,"owners_count":22903873,"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":["cli","moleculerjs","repl"],"created_at":"2025-03-11T21:54:10.497Z","updated_at":"2025-06-14T00:05:05.146Z","avatar_url":"https://github.com/jellydn.png","language":"TypeScript","funding_links":["https://github.com/sponsors/jellydn","https://ko-fi.com/dunghd","https://buymeacoffee.com/dunghd","https://polar.sh/jellydn","https://paypal.me/dunghd","https://www.buymeacoffee.com/dunghd"],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eWelcome to moleculer-connect 👋\u003c/h1\u003e\n\u003cp\u003e\n  \u003cimg alt=\"Version\" src=\"https://img.shields.io/badge/version-0.2.0-blue.svg?cacheSeconds=2592000\" /\u003e\n  \u003ca href=\"https://github.com/jellydn/moleculer-connect#readme\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Documentation\" src=\"https://img.shields.io/badge/documentation-yes-brightgreen.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/jellydn/moleculer-connect/graphs/commit-activity\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Maintenance\" src=\"https://img.shields.io/badge/Maintained%3F-yes-green.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/jellydn/moleculer-connect/blob/master/LICENSE\" target=\"_blank\"\u003e\n    \u003cimg alt=\"License: MIT\" src=\"https://img.shields.io/github/license/jellydn/moleculer-connect\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e A command-line interface for connecting to Moleculer microservices\n\n### 🏠 [Homepage](https://github.com/jellydn/moleculer-connect#readme)\n\n## Usage\n\n```sh\nnpm install moleculer-connect moleculer-repl@0.6.6\n```\n\nFor example, run below command to connect to a Moleculer TypeScript project:\n\n```sh\nNODE_OPTIONS='--import tsx' moleculer-connect --env --config moleculer.config.ts\n```\n\n## Options\n\nThe CLI supports several options to customize the connection:\n\n```sh\nOptions:\n      --version     Show version number                                [boolean]\n      --help        Show help                                          [boolean]\n  -c, --config      Load configuration from a file        [string] [default: \"\"]\n      --ns          Namespace                             [string] [default: \"\"]\n      --level       Logging level                     [string] [default: \"info\"]\n      --id          NodeID                              [string] [default: null]\n  -h, --hot         Enable hot-reload                 [boolean] [default: false]\n      --serializer  Serializer                          [string] [default: null]\n      --commands    Custom REPL command file mask (e.g.: ./commands/*.js)\n                                                        [string] [default: null]\n```\n\n## Pre-commit hooks\n\nThis project uses [pre-commit](https://pre-commit.com/) to enforce code quality. To install the pre-commit hooks, run:\n\n```sh\npre-commit install\n```\n\n## Author\n\n👤 **Dung Huynh Duc \u003cdung@productsway.com\u003e**\n\n-   Github: [@jelydn](https://github.com/jelydn)\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n[![kofi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge\u0026logo=ko-fi\u0026logoColor=white)](https://ko-fi.com/dunghd)\n[![paypal](https://img.shields.io/badge/PayPal-00457C?style=for-the-badge\u0026logo=paypal\u0026logoColor=white)](https://paypal.me/dunghd)\n[![buymeacoffee](https://img.shields.io/badge/Buy_Me_A_Coffee-FFDD00?style=for-the-badge\u0026logo=buy-me-a-coffee\u0026logoColor=black)](https://www.buymeacoffee.com/dunghd)\n\n## 📝 License\n\nCopyright © 2023 [Dung Huynh Duc \u003cdung@productsway.com\u003e](https://github.com/jelydn).\u003cbr /\u003e\nThis project is [MIT](https://github.com/jelydn/moleculer-connect/blob/master/LICENSE) licensed.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjellydn%2Fmoleculer-connect","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjellydn%2Fmoleculer-connect","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjellydn%2Fmoleculer-connect/lists"}