{"id":14155618,"url":"https://github.com/risevest/octonet","last_synced_at":"2026-02-26T11:02:55.556Z","repository":{"id":58840533,"uuid":"400203734","full_name":"risevest/octonet","owner":"risevest","description":"Web Services toolkit","archived":false,"fork":false,"pushed_at":"2026-01-21T09:52:18.000Z","size":446,"stargazers_count":8,"open_issues_count":2,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-01-21T21:31:03.644Z","etag":null,"topics":["microservices","nats","rabbitmq","toolkit","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/risevest.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-08-26T14:45:47.000Z","updated_at":"2026-01-21T09:52:20.000Z","dependencies_parsed_at":"2024-03-29T03:32:59.667Z","dependency_job_id":"01f7703c-56ee-42c3-b855-91716b22f268","html_url":"https://github.com/risevest/octonet","commit_stats":{"total_commits":90,"total_committers":8,"mean_commits":11.25,"dds":"0.18888888888888888","last_synced_commit":"13586845c2f0cd7f6ecf3ab454e984fe3c84f19e"},"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"purl":"pkg:github/risevest/octonet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/risevest%2Foctonet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/risevest%2Foctonet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/risevest%2Foctonet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/risevest%2Foctonet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/risevest","download_url":"https://codeload.github.com/risevest/octonet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/risevest%2Foctonet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29853381,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T22:37:40.667Z","status":"online","status_checked_at":"2026-02-26T02:00:06.774Z","response_time":89,"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":["microservices","nats","rabbitmq","toolkit","typescript","web"],"created_at":"2024-08-17T08:04:27.628Z","updated_at":"2026-02-26T11:02:55.531Z","avatar_url":"https://github.com/risevest.png","language":"TypeScript","funding_links":[],"categories":["web"],"sub_categories":[],"readme":"# Octonet\n\n![Github Actions](https://github.com/risevest/octonet/actions/workflows/build-test.yml/badge.svg)\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)\n\n## About\n\noctonet is a library that provides utility functions for building microservices such as:\n\n- Interservice communication (via REST)\n- Subscribing to events from RabbitMQ queues and NATS servers.\n- Logging\n- Distributed Tracing\n- Authentication\n\n## Getting Started\n\nThese instructions will get you a copy of the project up and running on your local machine for development purposes.\n\n### Prerequisites\n\nThe following are required for the best use of Octonet:\n\n- Package Dependencies\n  - NodeJs (v14 or higher)\n  - Yarn\n  - Typescript (v4.4 or higher)\n- A basic understanding of dependency injection with Inversify\n\n### Installation\n\nTo install Octonet, run the following command in your terminal\n\n```bash\nyarn install --save @risemaxi/octonet reflect-metadata\n```\n\nTo upgrade to a specific version run this command\n\n```bash\nyarn upgrade @risemaxi/octonet@version\n```\n\nTo upgrade to latest version run this command\n\n```bash\nyarn upgrade @risemaxi/octonet --latest\n```\n\n\u003e Note: Octonet requires Typescript (\u003e= v4.4), as well as the `Decorator` experimental feature. Therefore, the following config options should be present in your `tsconfig.json` file:\n\n```json\n{\n  \"compilerOptions\": {\n    \"target\": \"ES2017\",\n    \"lib\": [\"es2017\", \"esnext.asynciterable\", \"dom\"],\n    \"types\": [\"reflect-metadata\"],\n    \"module\": \"commonjs\",\n    \"moduleResolution\": \"node\",\n    \"experimentalDecorators\": true,\n    \"emitDecoratorMetadata\": true\n  }\n}\n```\n\n## Guides\n\nBelow are links to detailed explanations to the various features of Octonet as well as practical examples:\n\n- [HTTP (Interservice Comunication)](docs/HTTP.md)\n- [NatsConsumer (subscribing to Nats topics)](docs/Consumer.md)\n- [QueueManager (subscribing to RabbitMQ queues)](docs/Manager.md)\n- [Authentication](docs/Authentication.md)\n- [Logging \u0026 Tracing](docs/Logging.md)\n- [Job Scheduling](docs/Jobs.md)\n\n## References and Helpful Links\n\nThe following links would further aid the understanding of Octonet\n\n- [Inversify](https://github.com/inversify/InversifyJS#readme)\n- [Reflect Metadata](https://rbuckton.github.io/reflect-metadata/)\n- [Typescript Decorators](https://www.typescriptlang.org/docs/handbook/decorators.html)\n- [AMPQ Client docs for NodeJs](http://www.squaremobius.net/amqp.node/channel_api.html)\n- [Bunyan](https://github.com/trentm/node-bunyan#readme)\n- [Axios](https://axios-http.com/docs/intro)\n- [RabbitMQ messaging queues](https://www.rabbitmq.com/)\n- [NATS Messaging](https://docs.nats.io/nats-concepts/what-is-nats)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frisevest%2Foctonet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frisevest%2Foctonet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frisevest%2Foctonet/lists"}