{"id":48915299,"url":"https://github.com/i-link-pro-team/ilink","last_synced_at":"2026-04-17T02:00:48.555Z","repository":{"id":60394781,"uuid":"541961688","full_name":"i-link-pro-team/ilink","owner":"i-link-pro-team","description":"Console utilities and libraries for projects in ilink-pro-team","archived":false,"fork":false,"pushed_at":"2023-05-23T11:11:33.000Z","size":1095,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-27T09:45:41.358Z","etag":null,"topics":["cli","consul","env","files-to-consul","files2consul","ilink","sync"],"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/i-link-pro-team.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["EndyKaufman"],"patreon":"EndyKaufman","ko_fi":"endykaufman","liberapay":"EndyKaufman","issuehunt":"endykaufman"}},"created_at":"2022-09-27T07:39:22.000Z","updated_at":"2023-09-15T11:34:00.000Z","dependencies_parsed_at":"2023-01-20T09:41:11.463Z","dependency_job_id":null,"html_url":"https://github.com/i-link-pro-team/ilink","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/i-link-pro-team/ilink","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i-link-pro-team%2Filink","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i-link-pro-team%2Filink/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i-link-pro-team%2Filink/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i-link-pro-team%2Filink/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/i-link-pro-team","download_url":"https://codeload.github.com/i-link-pro-team/ilink/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/i-link-pro-team%2Filink/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31911846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"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":["cli","consul","env","files-to-consul","files2consul","ilink","sync"],"created_at":"2026-04-17T02:00:47.660Z","updated_at":"2026-04-17T02:00:48.550Z","avatar_url":"https://github.com/i-link-pro-team.png","language":"TypeScript","funding_links":["https://github.com/sponsors/EndyKaufman","https://patreon.com/EndyKaufman","https://ko-fi.com/endykaufman","https://liberapay.com/EndyKaufman","https://issuehunt.io/r/endykaufman"],"categories":[],"sub_categories":[],"readme":"# Console ilink tools\n\n[![npm version](https://badge.fury.io/js/ilink-console-tools.svg)](https://badge.fury.io/js/ilink-console-tools)\n[![monthly downloads](https://badgen.net/npm/dm/ilink-console-tools)](https://www.npmjs.com/package/ilink-console-tools)\n\n## Installation\n\n```bash\nnpm i -g ilink-console-tools\n```\n\n## Links\n\nhttps://github.com/i-link-pro-team/ilink/blob/master/libs/ilink-console-tools/README.md - full readme\n\n## Usage\n\n```bash\n# upload from file to consul-kv\nilink-console-tools env-to-consul --path=.env --consul-token=myCustomToken --consul-host=localhost\n# download from consul-kv to file\nilink-console-tools consul-to-env --consul-token=myCustomToken --path=.env --consul-host=localhost\n```\n\n# NestJS library for work with consul-kv\n\n[![npm version](https://badge.fury.io/js/nestjs-consul-kv-realtime.svg)](https://badge.fury.io/js/nestjs-consul-kv-realtime)\n[![monthly downloads](https://badgen.net/npm/dm/nestjs-consul-kv-realtime)](https://www.npmjs.com/package/nestjs-consul-kv-realtime)\n\n## Installation\n\n```bash\nnpm i --save consul nestjs-consul-kv-realtime\n```\n\n## Links\n\nhttps://github.com/i-link-pro-team/ilink/blob/master/libs/nestjs-consul-kv-realtime/README.md - full readme\n\n## Usage\n\n### Simple usage with global watchers for consul-kv\n\n```typescript\nimport { Module } from '@nestjs/common';\nimport { NestjsConsulKvRealtimeModule } from 'nestjs-consul-kv-realtime';\n\n@Module({\n  imports: [\n    NestjsConsulKvRealtimeModule.forRootAsync({\n      useFactory: async () =\u003e ({\n        port: '8500',\n        host: 'localhost',\n        defaults: {\n          token: `CONSUL_HTTP_TOKEN`,\n        },\n        watchers: [\n          {\n            interval: 1000,\n            key: 'consul-key',\n            callback: async (value: { key: string }) =\u003e {\n              console.log('New value from consul:', value);\n            },\n          },\n        ],\n      }),\n    }),\n  ],\n})\nexport class AppModule {}\n```\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi-link-pro-team%2Filink","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fi-link-pro-team%2Filink","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fi-link-pro-team%2Filink/lists"}